aboutsummaryrefslogtreecommitdiff
path: root/wince
diff options
context:
space:
mode:
authorLudvig Strigeus2002-04-14 18:13:08 +0000
committerLudvig Strigeus2002-04-14 18:13:08 +0000
commitac62a7cb2e17a86350681366d768a99db3b9845d (patch)
tree48a6f9eca1242f7ebf03f05835372811a4048f7a /wince
parenta5e3dbb85dad96d8ffb6205e07d12ff8396ba5c7 (diff)
downloadscummvm-rg350-ac62a7cb2e17a86350681366d768a99db3b9845d.tar.gz
scummvm-rg350-ac62a7cb2e17a86350681366d768a99db3b9845d.tar.bz2
scummvm-rg350-ac62a7cb2e17a86350681366d768a99db3b9845d.zip
wrote new mixer class,
cleaned up sound header files, integrated mixer into scummvm & simon svn-id: r3937
Diffstat (limited to 'wince')
-rw-r--r--wince/pocketpc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/wince/pocketpc.cpp b/wince/pocketpc.cpp
index 698cf47de8..2cd7953ad4 100644
--- a/wince/pocketpc.cpp
+++ b/wince/pocketpc.cpp
@@ -155,7 +155,7 @@ Scumm scumm;
ScummDebugger debugger;
Gui gui;
-SoundEngine sound;
+IMuse sound;
SOUND_DRIVER_TYPE snd_driv;
@@ -953,7 +953,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLin
int argc = 3;
char* argv[3];
char argdir[MAX_PATH];
- SoundEngine *se;
+ IMuse *se;
sound_activated = true;
hide_toolbar = false;
@@ -984,7 +984,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLin
keypad_init();
registry_init();
- se = (SoundEngine*)scumm._soundEngine;
+ se = scumm._imuse;
se->set_music_volume(scumm._sound_volume_music);
se->set_master_volume(scumm._sound_volume_master);