LASTEXPRESS: Fix sound timer to only run every 17 milliseconds

This commit is contained in:
Littleboy 2011-03-22 16:46:31 -04:00
parent 5f96dc6867
commit 5277c86482

View File

@ -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);