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

Star Wars fix cursor

Star Wars don't hide cursor
This commit is contained in:
Reaver 2019-11-18 13:25:52 +02:00
parent 3661299a4a
commit 483dfc20bd

View File

@ -185,6 +185,13 @@ static InitFunction StarWarsEs3XLauncherFunc([]()
// Don't minimize all windows
injector::MakeNOP(imageBase + 0x33AE2, 6);
injector::WriteMemory<WORD>(imageBase + 0x33A45, 0xE990, true);
// Don't hide cursor pls
if (!ToBool(config["General"]["HideCursor"]))
{
injector::MakeNOP(imageBase + 0x342B3, 6);
}
hookPort = "COM3";
}, GameID::StarWarsEs3XLauncher);