Skip to content

Commit

Permalink
Changed the load screen removal patch a bit with spitfire's new addre…
Browse files Browse the repository at this point in the history
…sses
  • Loading branch information
rtsonneveld committed Jan 27, 2024
1 parent 2970f79 commit f393f2e
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ public override void Action()
if (processHandle < 0)
return;

byte[] nopInstructions = new byte[] { 0x90, 0x90, 0x90, 0x90, 0x90};
byte[] retBytes = new byte[] { 0xC3 };

GameManager.WriteBytes(nopInstructions, 0x45F85E);
GameManager.WriteBytes(nopInstructions, 0x4508F0);
GameManager.WriteBytes(nopInstructions, 0x4043D6);
GameManager.WriteBytes(retBytes, 0x45F7E0);
GameManager.WriteBytes(retBytes, 0x45F530);
GameManager.WriteBytes(retBytes, 0x45EED0);
GameManager.WriteBytes(retBytes, 0x45EDF0);
GameManager.WriteBytes(retBytes, 0x45EE10);
}
}
}

0 comments on commit f393f2e

Please sign in to comment.