1
0
mirror of synced 2025-01-20 17:48:51 +01:00

Added option to hide mouse cursor out of way on Daytona3

This commit is contained in:
Boomslangnz 2018-11-22 18:11:53 +13:00
parent bf2e810657
commit e78b0f0394

View File

@ -266,6 +266,10 @@ static InitFunction Daytona3Func([]()
{
injector::WriteMemoryRaw(imageBase + 0x17CD3D, "\x00", 1, true);
}
if (ToBool(config["General"]["Hide Cursor"]))
{
SetCursorPos(2000, 2000);
}
MH_Initialize();
MH_CreateHook((void*)(imageBase + 0x1E9280), ControlsFunction, (void**)&g_origControlsFunction);
MH_EnableHook(MH_ALL_HOOKS);