Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions src/dvd/dvd.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,19 +324,17 @@ static void cbForUnrecoveredErrorRetry(u32 intType)
{
if (intType == 0x10) {
executing->state = -1;
#ifdef DEBUG
DVDReset();
#else
stateTimeout();
#endif
} else {
executing->state = -1;

if ((intType & 2) != 0) {
#ifndef DEBUG
#ifdef DEBUG
stateError(0x01234567);
#else
__DVDStoreErrorCode(0x01234567);
#endif
DVDLowStopMotor(cbForStateError);
#endif
return;
}

Expand Down