Fixed the upper limit when applying mouse sensitivity

This commit is contained in:
NovaRain
2025-09-11 22:11:37 +08:00
parent 7f7a159fc1
commit a0967aa12a
+4
View File
@@ -4488,6 +4488,10 @@ void BugFixes::init() {
// Fix crash when an encounter between two groups fighting each other fails to spawn one group
MakeCall(0x4C119A, wmSetupRandomEncounter_hack, 1);
// Fix incorrect upper limit in mouse_set_sensitivity_ engine function
SafeWrite8(0x4CAC54, 0x77); // jae > ja
SafeWrite8(0x50FA0A, 0x04); // 2.5 (was 2.0)
}
}