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:
Joost Peters 2006-02-12 01:06:26 +00:00
parent f661bbe9aa
commit c595b65aba

View file

@ -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)