[Scummvm-cvs-logs] SF.net SVN: scummvm:[33189] scummvm/trunk/engines/parallaction

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Tue Jul 22 11:12:10 CEST 2008


Revision: 33189
          http://scummvm.svn.sourceforge.net/scummvm/?rev=33189&view=rev
Author:   peres001
Date:     2008-07-22 09:12:10 +0000 (Tue, 22 Jul 2008)

Log Message:
-----------
Removed unneeded input code.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/input.cpp
    scummvm/trunk/engines/parallaction/input.h

Modified: scummvm/trunk/engines/parallaction/input.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/input.cpp	2008-07-22 09:00:39 UTC (rev 33188)
+++ scummvm/trunk/engines/parallaction/input.cpp	2008-07-22 09:12:10 UTC (rev 33189)
@@ -178,31 +178,20 @@
 
 }
 
-void Input::updateCommentInput() {
-/*	waitUntilLeftClick();
 
-	_vm->hideDialogueStuff();
-	_vm->_gfx->setHalfbriteMode(false);
-
-	_inputMode = kInputModeGame;
-*/}
-
 InputData* Input::updateInput() {
 
 	_inputData._event = kEvNone;
 
 	switch (_inputMode) {
 	case kInputModeComment:
+	case kInputModeDialogue:
 		readInput();
 		break;
 
 	case kInputModeGame:
 		updateGameInput();
 		break;
-
-	case kInputModeDialogue:
-		readInput();
-		break;
 	}
 
 	return &_inputData;

Modified: scummvm/trunk/engines/parallaction/input.h
===================================================================
--- scummvm/trunk/engines/parallaction/input.h	2008-07-22 09:00:39 UTC (rev 33188)
+++ scummvm/trunk/engines/parallaction/input.h	2008-07-22 09:12:10 UTC (rev 33189)
@@ -49,7 +49,6 @@
 
 class Input {
 	void updateGameInput();
-	void updateCommentInput();
 
 	// input-only
 	InputData	_inputData;


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