[Scummvm-cvs-logs] SF.net SVN: scummvm: [22518] scummvm/trunk/graphics

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Thu May 18 06:59:03 CEST 2006


Revision: 22518
Author:   eriktorbjorn
Date:     2006-05-18 06:58:33 -0700 (Thu, 18 May 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=22518&view=rev

Log Message:
-----------
Renamed screenChanged() to handleScreenChanged().

Modified Paths:
--------------
    scummvm/trunk/engines/sword1/animation.cpp
    scummvm/trunk/engines/sword2/animation.cpp
    scummvm/trunk/graphics/animation.cpp
    scummvm/trunk/graphics/animation.h
Modified: scummvm/trunk/engines/sword1/animation.cpp
===================================================================
--- scummvm/trunk/engines/sword1/animation.cpp	2006-05-18 13:40:35 UTC (rev 22517)
+++ scummvm/trunk/engines/sword1/animation.cpp	2006-05-18 13:58:33 UTC (rev 22518)
@@ -141,7 +141,7 @@
 			while (_sys->pollEvent(event)) {
 				switch (event.type) {
 				case OSystem::EVENT_SCREEN_CHANGED:
-					anim->screenChanged();
+					anim->handleScreenChanged();
 					break;
 				case OSystem::EVENT_KEYDOWN:
 					if (event.kbd.keycode == 27) {

Modified: scummvm/trunk/engines/sword2/animation.cpp
===================================================================
--- scummvm/trunk/engines/sword2/animation.cpp	2006-05-18 13:40:35 UTC (rev 22517)
+++ scummvm/trunk/engines/sword2/animation.cpp	2006-05-18 13:58:33 UTC (rev 22518)
@@ -328,7 +328,7 @@
 		while (_sys->pollEvent(event)) {
 			switch (event.type) {
 			case OSystem::EVENT_SCREEN_CHANGED:
-				anim->screenChanged();
+				anim->handleScreenChanged();
 				break;
 			case OSystem::EVENT_KEYDOWN:
 				if (event.kbd.keycode == 27)

Modified: scummvm/trunk/graphics/animation.cpp
===================================================================
--- scummvm/trunk/graphics/animation.cpp	2006-05-18 13:40:35 UTC (rev 22517)
+++ scummvm/trunk/graphics/animation.cpp	2006-05-18 13:58:33 UTC (rev 22518)
@@ -255,7 +255,7 @@
 	return false;
 }
 
-void BaseAnimationState::screenChanged() {
+void BaseAnimationState::handleScreenChanged() {
 #ifndef BACKEND_8BIT
 	const int screenW = _sys->getOverlayWidth();
 	const int screenH = _sys->getOverlayHeight();

Modified: scummvm/trunk/graphics/animation.h
===================================================================
--- scummvm/trunk/graphics/animation.h	2006-05-18 13:40:35 UTC (rev 22517)
+++ scummvm/trunk/graphics/animation.h	2006-05-18 13:58:33 UTC (rev 22518)
@@ -133,7 +133,7 @@
 
 	bool init(const char *name, void *audioArg = NULL);
 	bool decodeFrame();
-	void screenChanged();
+	void handleScreenChanged();
 	void updateScreen();
 
 #ifndef BACKEND_8BIT


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