diff options
author | Chris Apers | 2006-02-11 09:32:10 +0000 |
---|---|---|
committer | Chris Apers | 2006-02-11 09:32:10 +0000 |
commit | 0aa701d75971e0461dbd8cfa8c2397c0c3ab1b4a (patch) | |
tree | 2cedd5924472b98947b90d277ea7f7829eb0a31a | |
parent | 7f1771cba8df73c4663b1ee18913520d00170bc1 (diff) | |
download | scummvm-rg350-0aa701d75971e0461dbd8cfa8c2397c0c3ab1b4a.tar.gz scummvm-rg350-0aa701d75971e0461dbd8cfa8c2397c0c3ab1b4a.tar.bz2 scummvm-rg350-0aa701d75971e0461dbd8cfa8c2397c0c3ab1b4a.zip |
Does this fix the sound problem on device wakeup ?
svn-id: r20505
-rwxr-xr-x | backends/PalmOS/Src/os5_event.cpp | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/backends/PalmOS/Src/os5_event.cpp b/backends/PalmOS/Src/os5_event.cpp index 4691092b15..99e5867450 100755 --- a/backends/PalmOS/Src/os5_event.cpp +++ b/backends/PalmOS/Src/os5_event.cpp @@ -17,7 +17,8 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * $Header$ + * $URL$ + * $Id$ * */ @@ -50,20 +51,6 @@ bool OSystem_PalmOS5::check_event(Event &event, EventPtr ev) { event.mouse.x = _mouseCurState.x; event.mouse.y = _mouseCurState.y; return true; - - // trun off - case vchrAutoOff: - case vchrPowerOff: - // pause the sound thread if any - if (_sound.active) - SndStreamPause(_soundEx.handle, true); - break; - - case vchrLateWakeup: - // resume the sound thread if any - if (_sound.active) - SndStreamPause(_soundEx.handle, false); - break; } if (_keyMouse.hasMore) { |