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

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Mon Jan 28 16:20:47 CET 2008


Revision: 30679
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30679&view=rev
Author:   fingolfin
Date:     2008-01-28 07:20:47 -0800 (Mon, 28 Jan 2008)

Log Message:
-----------
Fix 'member var shadowed' warning

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/gfxbase.cpp

Modified: scummvm/trunk/engines/parallaction/gfxbase.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/gfxbase.cpp	2008-01-28 15:20:25 UTC (rev 30678)
+++ scummvm/trunk/engines/parallaction/gfxbase.cpp	2008-01-28 15:20:47 UTC (rev 30679)
@@ -57,13 +57,13 @@
 }
 
 
-void GfxObj::getRect(uint frame, Common::Rect &r) {
-	_frames->getRect(frame, r);
+void GfxObj::getRect(uint f, Common::Rect &r) {
+	_frames->getRect(f, r);
 }
 
 
-byte *GfxObj::getData(uint frame) {
-	return _frames->getData(frame);
+byte *GfxObj::getData(uint f) {
+	return _frames->getData(f);
 }
 
 


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