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
+5 -5
View File
@@ -10,8 +10,8 @@
<script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript">
window.addEventListener("load", function() {
new DllPatcherContainer([
new DllPatcher("bm2dx", [
new PatchContainer([
new Patcher('bm2dx.dll', "2014-09-17", [
{
//by nibs
name: "Shorter monitor check",
@@ -25,8 +25,8 @@
//changes the FPS = %2.4f string to FPS = %2.6f
patches: [{offset: 0x14E2AD, off: [0x34], on: [0x36]}]
},
], "2014-09-17"),
new DllPatcher("bm2dx", [
]),
new Patcher('bm2dx.dll', "2015-08-05", [
{
name: "Timer Freeze",
patches: [{offset: 0x9c55e, off: [0x74], on: [0xEB]}]
@@ -75,7 +75,7 @@
//changes the FPS = %2.4f string to FPS = %2.6f
patches: [{offset: 0x16E911, off: [0x34], on: [0x36]}]
},
], "2015-08-05"),
]),
]);
});
</script>