mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 14:10:40 -07:00
Refactor: Support exe, sane arg order
This commit is contained in:
+7
-9
@@ -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: 0xCC8EA, off: [0x74, 0x12, 0x68, 0x04], on: [0x90, 0x90, 0x68, 0x04]}
|
||||
{offset: 0xCC8EA, off: [0x74, 0x12, 0x68, 0x04], on: [0x90, 0x90, 0x68, 0x04]}
|
||||
]
|
||||
}
|
||||
], true),
|
||||
new DllPatcher("boot", [
|
||||
]);
|
||||
new Patcher("boot.dll", "", [
|
||||
{
|
||||
name: "GF's volume fix",
|
||||
patches: [
|
||||
@@ -28,16 +27,15 @@
|
||||
{offset: 0x1B71, 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.*.*",
|
||||
patches: [
|
||||
{offset: 0x18F3A, off: [0x01, 0x5B], on: [0x00, 0x5B]}
|
||||
]
|
||||
}
|
||||
], true)
|
||||
]);
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
Reference in New Issue
Block a user