aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}