Refactor: Support exe, sane arg order

This commit is contained in:
Will Toohey
2019-11-17 20:58:28 +10:00
parent 01e1818047
commit b27039dbe6
33 changed files with 638 additions and 648 deletions
+3 -3
View File
@@ -9,8 +9,8 @@
<script type="text/javascript" src="js/FileSaver.min.js"></script>
<script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript">
window.addEventListener("load", function () {
new DllPatcher("game", [
window.addEventListener("load", function () {
new Patcher("game.dll", "", [
{
name: "Timer Freeze",
patches: [{offset: 0xBC37, off: [0x0F, 0x85, 0xAA, 0x01, 0x00, 0x00], on: [0xE9, 0xAB, 0x01, 0x00, 0x00, 0x90]}]
@@ -32,7 +32,7 @@
name: "Enable Long Music",
patches: [{offset: 0x154A74, off: [0x75, 0x03], on: [0x90, 0x90]}]
}
]);
]);
});
</script>
</head>