SomeReplayLeft matching

This commit is contained in:
Dethrace Labs 2025-11-27 13:25:52 +13:00
parent e234756fd0
commit 4f2b559d12
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ int IsActionReplayAvailable(void) {
// FUNCTION: CARM95 0x004280a1
int SomeReplayLeft(void) {
return ((GetReplayDirection() >= 1 && gPipe_play_ptr != gPipe_record_ptr) || (GetReplayDirection() <= -1 && gPipe_play_ptr != gPipe_buffer_oldest));
return ((GetReplayDirection() > 0 && gPipe_play_ptr != gPipe_record_ptr) || (GetReplayDirection() < 0 && gPipe_play_ptr != gPipe_buffer_oldest));
}
// IDA: void __cdecl DisablePipedSounds()