[chunithm] allow timer patches to go negative

This commit is contained in:
beer-psi
2024-12-17 20:14:50 +07:00
parent 80d0d40643
commit c51f0c084d
6 changed files with 42 additions and 21 deletions
+6 -3
View File
@@ -31,26 +31,29 @@
},
{
name: "Map selection timer",
tooltip: "If the timer is negative, then the in-game timer is 968 - timer",
type: "number",
offset: 0x8F52E0,
size: 1,
min: 1,
min: -128,
max: 127,
},
{
name: "Ticket selection timer",
tooltip: "If the timer is negative, then the in-game timer is 968 - timer",
type: "number",
offset: 0x8E9142,
size: 1,
min: 1,
min: -128,
max: 127,
},
{
name: "Course selection timer",
tooltip: "If the timer is negative, then the in-game timer is 968 - timer",
type: "number",
offset: 0x98EA0B,
size: 1,
min: 1,
min: -128,
max: 127,
},
{