[Scummvm-cvs-logs] CVS: scummvm/backends/morphos morphos.cpp,1.35,1.36 morphos.h,1.22,1.23

Max Horn fingolfin at users.sourceforge.net
Sun Mar 14 16:55:13 CET 2004


Update of /cvsroot/scummvm/scummvm/backends/morphos
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1672/morphos

Modified Files:
	morphos.cpp morphos.h 
Log Message:
Added OSystem::getDefaultGraphicsMode(); renamed OSystem::get_height() and get_width() to getHeight and getWidth(); augmented some doxygen comments in common/system.h

Index: morphos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/morphos/morphos.cpp,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- morphos.cpp	28 Feb 2004 12:57:51 -0000	1.35
+++ morphos.cpp	15 Mar 2004 00:45:44 -0000	1.36
@@ -1567,12 +1567,12 @@
 	CreateScreen(CSDSPTYPE_KEEP);
 }
 
-int16 OSystem_MorphOS::get_width()
+int16 OSystem_MorphOS::getWidth()
 {
 	return ScummScrWidth;
 }
 
-int16 OSystem_MorphOS::get_height()
+int16 OSystem_MorphOS::getHeight()
 {
 	return ScummScrHeight;
 }

Index: morphos.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/morphos/morphos.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- morphos.h	28 Feb 2004 12:57:51 -0000	1.22
+++ morphos.h	15 Mar 2004 00:45:44 -0000	1.23
@@ -75,8 +75,8 @@
 		virtual void clear_overlay();
 		virtual void grab_overlay(int16 *buf, int pitch);
 		virtual void copy_rect_overlay(const int16 *buf, int pitch, int x, int y, int w, int h);
-		virtual int16 get_height();
-		virtual int16 get_width();
+		virtual int16 getHeight();
+		virtual int16 getWidth();
 
 		// Get the number of milliseconds since the program was started.
 		virtual uint32 get_msecs();





More information about the Scummvm-git-logs mailing list