Skip to content

Commit 6850c6e

Browse files
committed
Update PCSX2 signature search range and bump revision number
1 parent f527788 commit 6850c6e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/NativeImpl/LunaHook/LunaHook/emulators/PCSX2.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,9 @@ namespace
139139
0x48, 0x3b, 0x05, XX4,
140140
0x72, 0x07,
141141
0xc6, 0x05, XX4, 0x01};
142-
// 2.5.146
143-
recRecompile = (decltype(recRecompile))reverseFindBytes(sig2, sizeof(sig2), fmtstrptr - 0x2800, fmtstrptr, 0, true);
142+
// v2.5.146 - 0x2800
143+
// v2.7.187 - 0x2b00
144+
recRecompile = (decltype(recRecompile))reverseFindBytes(sig2, sizeof(sig2), fmtstrptr - 0x2b00, fmtstrptr, 0, true);
144145
}
145146
return recRecompile;
146147
}

src/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
set(VERSION_MAJOR 10)
33
set(VERSION_MINOR 15)
44
set(VERSION_PATCH 6)
5-
set(VERSION_REVISION 8)
5+
set(VERSION_REVISION 9)

0 commit comments

Comments
 (0)