[Scummvm-cvs-logs] CVS: scummvm/saga animation.cpp,1.8,1.9 animation.h,1.6,1.7

Max Horn fingolfin at users.sourceforge.net
Sat Jul 31 12:11:08 CEST 2004


Update of /cvsroot/scummvm/scummvm/saga
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7290

Modified Files:
	animation.cpp animation.h 
Log Message:
Fix warning (static functions are source/object file local; declaring them in a header makes no sense anyway :-)

Index: animation.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/animation.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- animation.cpp	31 Jul 2004 13:34:43 -0000	1.8
+++ animation.cpp	31 Jul 2004 19:10:47 -0000	1.9
@@ -35,6 +35,8 @@
 
 namespace Saga {
 
+static void CF_anim_info(int argc, char *argv[]);
+
 static R_ANIMINFO AnimInfo;
 
 int Anim::reg() {

Index: animation.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/animation.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- animation.h	31 Jul 2004 13:34:43 -0000	1.6
+++ animation.h	31 Jul 2004 19:10:47 -0000	1.7
@@ -118,8 +118,6 @@
 	int getFrameOffset(const byte *anim_resource, size_t anim_resource_len, uint16 find_frame, size_t *frame_offset);
 };
 
-static void CF_anim_info(int argc, char *argv[]);
-
 } // End of namespace Saga
 
 #endif				/* R_ANIMATION_H_ */





More information about the Scummvm-git-logs mailing list