[Scummvm-cvs-logs] scummvm master -> 5277c86482d955d19441a1cd4b7363a61bd1a230

Littleboy littleboy22 at gmail.com
Tue Mar 22 21:51:13 CET 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5277c86482 LASTEXPRESS: Fix sound timer to only run every 17 milliseconds


Commit: 5277c86482d955d19441a1cd4b7363a61bd1a230
    https://github.com/scummvm/scummvm/commit/5277c86482d955d19441a1cd4b7363a61bd1a230
Author: Littleboy (littleboy at users.sourceforge.net)
Date: 2011-03-22T13:46:31-07:00

Commit Message:
LASTEXPRESS: Fix sound timer to only run every 17 milliseconds

Changed paths:
    engines/lastexpress/lastexpress.cpp



diff --git a/engines/lastexpress/lastexpress.cpp b/engines/lastexpress/lastexpress.cpp
index 9074225..7c08fef 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);






More information about the Scummvm-git-logs mailing list