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
+9 -11
View File
@@ -10,16 +10,15 @@
<script type="text/javascript" src="js/dllpatcher.js"></script>
<script type="text/javascript">
window.addEventListener("load", function () {
new DllPatcherContainer([
new DllPatcher("game", [
new Patcher("game.dll", "", [
{
name: "Force unlock SECRET folder",
patches: [
{offset: 0xC259A, off: [0x74, 0x12, 0x68, 0xC0], on: [0x90, 0x90, 0x68, 0xC0]}
{offset: 0xC259A, off: [0x74, 0x12, 0x68, 0xC0], on: [0x90, 0x90, 0x68, 0xC0]}
]
}
], true),
new DllPatcher("boot", [
]);
new Patcher("boot.dll", "", [
{
name: "GF's volume fix",
patches: [
@@ -28,8 +27,8 @@
{offset: 0x1BD1, off: [0x02], on: [0x03]},
]
}
], true),
new DllPatcher("libshare-pj", [
]);
new Patcher("libshare-pj.dll", "", [
{
name: "Let the game can access e-amuemu which IP is 192.168.*.*",
tooltip: "It's highly recommended using this just to turn off the e-AMUSEMENT easily,since it's not compatiable with e-amuemu(Cannot register cards but still can get into the game)",
@@ -37,14 +36,13 @@
{offset: 0x17ECA, off: [0x01, 0x5B], on: [0x00, 0x5B]}
]
}
], true),
new DllPatcher("libsytem", [
]);
new Patcher("libsystem.dll", "", [
{
name: "White screen freeze fix",
patches: [{offset: 0x306C, off: [0x53, 0x53], on: [0x33, 0xC0]}]
}
], true)
]);
]);
});
</script>
</head>