WaitFor effectively matching

This commit is contained in:
Dethrace Labs 2025-09-06 07:05:25 +12:00 committed by Dethrace Engineering Department
parent a0b4e2e0f9
commit f7ece6e227
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ void WaitFor(tU32 pDelay) {
tU32 start_time;
start_time = PDGetTotalTime();
while (start_time + pDelay < PDGetTotalTime()) {
while (start_time + pDelay > PDGetTotalTime()) {
SoundService();
}
}