Skip to content

Commit

Permalink
Better 64-bit room sigscan (from Neesi's LOVE autosplitters)
Browse files Browse the repository at this point in the history
  • Loading branch information
ners-xd authored Nov 30, 2024
1 parent f68eedf commit 2f1de7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Deltarune.asl
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ init
: scan(2, "8B 3D ?? ?? ?? ?? 2B EF");

vars.ptrRoomID = vars.x64
? scan(12, "E8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 89 3D ?? ?? ?? ??")
: scan(2, "FF 35 ?? ?? ?? ?? E8 ?? ?? ?? ?? 83 C4 04 50 68");
? scan(6, "48 ?? ?? ?? 3B 35 ?? ?? ?? ?? 41 ?? ?? ?? 49 ?? ?? E8 ?? ?? ?? ?? FF")
: scan(2, "FF 35 ?? ?? ?? ?? E8 ?? ?? ?? ?? 83 C4 04 50 68");

vars.getRoomName = (Func<string>)(() =>
{
Expand Down

0 comments on commit 2f1de7a

Please sign in to comment.