diff options
author | Littleboy | 2012-08-19 19:24:25 -0400 |
---|---|---|
committer | Littleboy | 2012-08-27 21:49:34 -0400 |
commit | 47fa7abbe00fb923be4053ae2a19e41a8d7753b9 (patch) | |
tree | 8dc232c65a1edcd3c2e4b8b071cfe0dedd16049c /engines/lastexpress | |
parent | cd5e750a7fdfa0c2ac7904d24b7d8e5a06eff99a (diff) | |
download | scummvm-rg350-47fa7abbe00fb923be4053ae2a19e41a8d7753b9.tar.gz scummvm-rg350-47fa7abbe00fb923be4053ae2a19e41a8d7753b9.tar.bz2 scummvm-rg350-47fa7abbe00fb923be4053ae2a19e41a8d7753b9.zip |
LASTEXPRESS: Fix playsnd debugger command
Diffstat (limited to 'engines/lastexpress')
-rw-r--r-- | engines/lastexpress/debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lastexpress/debug.cpp b/engines/lastexpress/debug.cpp index 55fb469da3..fae9ea7ceb 100644 --- a/engines/lastexpress/debug.cpp +++ b/engines/lastexpress/debug.cpp @@ -523,7 +523,7 @@ bool Debugger::cmdPlaySnd(int argc, const char **argv) { _engine->_system->getMixer()->stopAll(); - _soundStream->load(getArchive(name)); + _soundStream->load(getArchive(name), 16); if (argc == 3) restoreArchive(); |