Skip to content

Commit

Permalink
Update SavedGamesInSubdir.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Belonit committed Dec 18, 2023
1 parent 50701f2 commit 434d851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Misc/SavedGamesInSubdir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ DEFINE_HOOK(0x559C98, LoadOptionsClass_HasSaves_SGInSubdir, 0xB)
R->EAX(pFileName);
R->EDX(pFindFileData);

return 0x559CA3; // this is 0x559C98 + 0xB
return 0x559C98 + 0xB;
}

// Fill a list of files
Expand All @@ -150,7 +150,7 @@ DEFINE_HOOK(0x559886, LoadOptionsClass_FillList_SGInSubdir, 0x8)
HANDLE result = FindFirstFileA(pFileName, pFind);
R->EAX(result);

return 0x55988E; // this is 0x559886 + 0x8
return 0x559886 + 0x8;
}

DEFINE_HOOK(0x67FD26, LoadOptionsClass_ReadSaveInfo_SGInSubdir, 0x5)
Expand Down

0 comments on commit 434d851

Please sign in to comment.