[Scummvm-cvs-logs] SF.net SVN: scummvm: [31571] scummvm/trunk/engines/kyra

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sat Apr 19 16:00:14 CEST 2008


Revision: 31571
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31571&view=rev
Author:   lordhoto
Date:     2008-04-19 07:00:14 -0700 (Sat, 19 Apr 2008)

Log Message:
-----------
Renamed function for consistency.

Modified Paths:
--------------
    scummvm/trunk/engines/kyra/script_tim.cpp
    scummvm/trunk/engines/kyra/script_tim.h

Modified: scummvm/trunk/engines/kyra/script_tim.cpp
===================================================================
--- scummvm/trunk/engines/kyra/script_tim.cpp	2008-04-19 13:58:32 UTC (rev 31570)
+++ scummvm/trunk/engines/kyra/script_tim.cpp	2008-04-19 14:00:14 UTC (rev 31571)
@@ -35,7 +35,7 @@
 #define COMMAND_UNIMPL() { 0, 0 }
 	static CommandEntry commandProcs[] = {
 		// 0x00
-		COMMAND(cmd_startFunc0Now),
+		COMMAND(cmd_initFunc0Now),
 		COMMAND(cmd_stopCurFunc),
 		COMMAND_UNIMPL(),
 		COMMAND_UNIMPL(),
@@ -199,7 +199,7 @@
 	return (this->*_commands[cmd].proc)(param);
 }
 
-int TIMInterpreter::cmd_startFunc0Now(const uint16 *param) {
+int TIMInterpreter::cmd_initFunc0Now(const uint16 *param) {
 	_currentTim->func[0].ip = _currentTim->func[0].avtl;
 	_currentTim->func[0].lastTime = _system->getMillis();
 	return 1;

Modified: scummvm/trunk/engines/kyra/script_tim.h
===================================================================
--- scummvm/trunk/engines/kyra/script_tim.h	2008-04-19 13:58:32 UTC (rev 31570)
+++ scummvm/trunk/engines/kyra/script_tim.h	2008-04-19 14:00:14 UTC (rev 31571)
@@ -86,7 +86,7 @@
 	const CommandEntry *_commands;
 	int _commandsSize;
 
-	int cmd_startFunc0Now(const uint16 *param);
+	int cmd_initFunc0Now(const uint16 *param);
 	int cmd_stopCurFunc(const uint16 *param);
 	int cmd_initFunc(const uint16 *param);
 	int cmd_stopFunc(const uint16 *param);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list