diff options
author | Littleboy | 2011-03-22 16:46:31 -0400 |
---|---|---|
committer | Littleboy | 2011-03-22 16:46:31 -0400 |
commit | 5277c86482d955d19441a1cd4b7363a61bd1a230 (patch) | |
tree | 79461f56249216fab930a4e468d2cc70c323da6a /engines | |
parent | 5f96dc6867a509291af4e9b2632ae5c548101707 (diff) | |
download | scummvm-rg350-5277c86482d955d19441a1cd4b7363a61bd1a230.tar.gz scummvm-rg350-5277c86482d955d19441a1cd4b7363a61bd1a230.tar.bz2 scummvm-rg350-5277c86482d955d19441a1cd4b7363a61bd1a230.zip |
LASTEXPRESS: Fix sound timer to only run every 17 milliseconds
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lastexpress/lastexpress.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lastexpress/lastexpress.cpp b/engines/lastexpress/lastexpress.cpp index 9074225e94..7c08fef627 100644 --- a/engines/lastexpress/lastexpress.cpp +++ b/engines/lastexpress/lastexpress.cpp @@ -141,7 +141,7 @@ Common::Error LastExpressEngine::run() { // Start sound manager and setup timer _soundMan = new SoundManager(this); - _timer->installTimerProc(&soundTimer, 17, this); + _timer->installTimerProc(&soundTimer, 17000, this); // Menu _menu = new Menu(this); |