Add monitor check hex edits for all IIDX LDJ games (tricoro+) (#57)

* Add monitor check hex edits to CB

* Add monitor check hex edits for other games, fix PENDUAL page since one hex edit was incorrect, format PENDUAL page, remove SINOBUZ omnimix since it doesn't work and 7.1 works with regular hex edits
This commit is contained in:
Michael
2019-01-30 00:18:06 -05:00
committed by Will
parent db727eb1f9
commit fbb8f7496e
6 changed files with 237 additions and 186 deletions
+28
View File
@@ -11,6 +11,21 @@
<script type="text/javascript">
window.addEventListener("load", function () {
new DllPatcherContainer([
new DllPatcher("bm2dx", [
{
//by nibs
name: "Shorter monitor check",
tooltip: "Runs for 300 frames (5 seconds) instead of 1200 (20 seconds), recommended only if you have a very stable framerate",
patches: [{offset: 0x66C0D, off: [0xB0, 0x04], on: [0x2C, 0x01]}]
},
{
//by nibs
name: "6 digits in monitor check",
tooltip: "Purely visual, does not affect anything besides the FPS display",
//changes the FPS = %2.4f string to FPS = %2.6f
patches: [{offset: 0x143C45, off: [0x34], on: [0x36]}]
},
], "2012-09-19"),
new DllPatcher("bm2dx", [
{
name: "Premium Free",
@@ -38,6 +53,19 @@
name: "Unlock All Songs",
patches: [{offset: 0x4921D, off: [0x75, 0x09], on: [0x90, 0x90]}]
},
{
//by nibs
name: "Shorter monitor check",
tooltip: "Runs for 300 frames (5 seconds) instead of 1200 (20 seconds), recommended only if you have a very stable framerate",
patches: [{offset: 0x6D07A, off: [0xB0, 0x04], on: [0x2C, 0x01]}]
},
{
//by nibs
name: "6 digits in monitor check",
tooltip: "Purely visual, does not affect anything besides the FPS display",
//changes the FPS = %2.4f string to FPS = %2.6f
patches: [{offset: 0x16BDD5, off: [0x34], on: [0x36]}]
},
], "2013-09-09"),
]);
});