diff options
author | Vincent Hamm | 2002-03-24 17:49:47 +0000 |
---|---|---|
committer | Vincent Hamm | 2002-03-24 17:49:47 +0000 |
commit | 92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f (patch) | |
tree | d5b45dfe999b9c73264191e45abb1016837912f6 /sound/imuse.cpp | |
parent | 14e6021141ae06673f2ad8d92c60f8499e897ae8 (diff) | |
download | scummvm-rg350-92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f.tar.gz scummvm-rg350-92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f.tar.bz2 scummvm-rg350-92a19c45aef3f0e34dfcc5caf2b7f5e65295d00f.zip |
Fixed pal init
svn-id: r3815
Diffstat (limited to 'sound/imuse.cpp')
-rw-r--r-- | sound/imuse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/imuse.cpp b/sound/imuse.cpp index ce2bb84669..6b3352917e 100644 --- a/sound/imuse.cpp +++ b/sound/imuse.cpp @@ -695,7 +695,7 @@ int SoundEngine::enqueue_trigger(int sound, int marker) { int32 SoundEngine::do_command(int a, int b, int c, int d, int e, int f, int g, int h) { byte cmd = a&0xFF; byte param = a>>8; - Player *player; + Player *player=NULL; if (!_initialized && (cmd || param)) return -1; |