aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2006-02-12 19:01:49 +0000
committerChris Apers2006-02-12 19:01:49 +0000
commitaa83040c0a2a4ee8f16ddadaa10d620a5b1ccb78 (patch)
tree29fc83c14e43c71937c08577df72a04ac2425e10 /backends
parent5e4a4f779d37aed83adcd768aae04064217f6ae7 (diff)
downloadscummvm-rg350-aa83040c0a2a4ee8f16ddadaa10d620a5b1ccb78.tar.gz
scummvm-rg350-aa83040c0a2a4ee8f16ddadaa10d620a5b1ccb78.tar.bz2
scummvm-rg350-aa83040c0a2a4ee8f16ddadaa10d620a5b1ccb78.zip
It is _soundEx now
svn-id: r20640
Diffstat (limited to 'backends')
-rwxr-xr-xbackends/PalmOS/Src/zodiac_event.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/PalmOS/Src/zodiac_event.cpp b/backends/PalmOS/Src/zodiac_event.cpp
index 4a5980c35b..b573ec82ce 100755
--- a/backends/PalmOS/Src/zodiac_event.cpp
+++ b/backends/PalmOS/Src/zodiac_event.cpp
@@ -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;
}