openCD() and pollCD() should return false, since they don't actually access a CD.
This avoids some common pitfalls in new backends based off of this, like e.g. the hang on the final chapter screen in MI1CD. svn-id: r20588
This commit is contained in:
parent
f661bbe9aa
commit
c595b65aba
1 changed files with 2 additions and 2 deletions
|
@ -287,12 +287,12 @@ int OSystem_NULL::getOutputSampleRate() const
|
|||
|
||||
bool OSystem_NULL::openCD(int drive)
|
||||
{
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
bool OSystem_NULL::pollCD()
|
||||
{
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
void OSystem_NULL::playCD(int track, int num_loops, int start_frame, int duration)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue