It is _soundEx now

svn-id: r20640
This commit is contained in:
Chris Apers 2006-02-12 19:01:49 +00:00
parent 5e4a4f779d
commit aa83040c0a

View File

@ -99,13 +99,13 @@ bool OSystem_PalmZodiac::check_event(Event &event, EventPtr ev) {
case vchrPowerOff:
// pause the sound thread if any
if (_sound.active)
SndStreamPause(_sound.handle, true);
SndStreamPause(_soundEx.handle, true);
break;
case vchrLateWakeup:
// resume the sound thread if any
if (_sound.active)
SndStreamPause(_sound.handle, false);
SndStreamPause(_soundEx.handle, false);
break;
}