diff options
author | Lionel Ulmer | 2002-04-27 07:42:14 +0000 |
---|---|---|
committer | Lionel Ulmer | 2002-04-27 07:42:14 +0000 |
commit | 35d305ce64a702d1d34fd5a5c0a5ddb7c1cf40c2 (patch) | |
tree | a1bb2d2c5f73c56ecbe150ccf0caae38d43ff38b /scummvm.cpp | |
parent | 6ac9551e815b7566ff13d02d1800286290109074 (diff) | |
download | scummvm-rg350-35d305ce64a702d1d34fd5a5c0a5ddb7c1cf40c2.tar.gz scummvm-rg350-35d305ce64a702d1d34fd5a5c0a5ddb7c1cf40c2.tar.bz2 scummvm-rg350-35d305ce64a702d1d34fd5a5c0a5ddb7c1cf40c2.zip |
MP3 CD tracks should now be working properly.
Ludde, maybe you should check if Simon is still working OK as now the
change of the sound playing handle is 'asynchronous' (ie if you call
'stop' on a sound, the handle will NOT be put to NULL right away, but
at the next 'mix' thread call). Maybe we should completely remove this
handle stuff and always use instead the index returned by the
'play_XXX' functions.
svn-id: r4101
Diffstat (limited to 'scummvm.cpp')
-rw-r--r-- | scummvm.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scummvm.cpp b/scummvm.cpp index 7818eec41c..bf48a135f7 100644 --- a/scummvm.cpp +++ b/scummvm.cpp @@ -170,7 +170,6 @@ void Scumm::scummInit() #ifdef COMPRESSED_SOUND_FILE _current_cache = 0; - _mp3_buffer = NULL; #endif } |