libcda now only checks for current track is CDMode is not :off or :stopped
This commit is contained in:
parent
e830c4b3e9
commit
c107314558
1 changed files with 2 additions and 3 deletions
|
@ -274,12 +274,11 @@ global void CDRomCheck(void)
|
|||
} else if (!strcmp(CDMode, ":random")) {
|
||||
PlayMusic(":random");
|
||||
}
|
||||
} else {
|
||||
} else if (strcmp(CDMode, ":off") && strcmp(CDMode, ":stopped")) {
|
||||
DebugLevel0Fn("get track\n");
|
||||
CDTrack = cd_current_track() + 1;
|
||||
if (CDTrack > NumCDTracks) {
|
||||
if (CDTrack > NumCDTracks)
|
||||
CDTrack = 1;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue