summaryrefslogtreecommitdiff
path: root/gmod/get_viewmodel_fov.cpp
blob: e4722e2b3f8752730a0d42743cdcdd28231024c3 (plain)
1
2
3
4
5
6
7
8
#include "hooks.hpp"
#include "settings.hpp"

float __fastcall hooks::get_viewmodel_fov( void* ecx, void* edx ) {
	static auto get_viewmodel_fov_o = g_csgo.m_clientmode->get_old_function< decltype( &hooks::get_viewmodel_fov ) >( 35 );

	return get_viewmodel_fov_o( ecx, nullptr ) + float( g_settings.misc.viewmodel_fov );
}