[Scummvm-cvs-logs] CVS: scummvm/backends/x11 x11.cpp,1.24,1.25

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


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

Modified Files:
	x11.cpp 
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: x11.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/x11/x11.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- x11.cpp	28 Feb 2004 12:57:52 -0000	1.24
+++ x11.cpp	15 Mar 2004 00:45:45 -0000	1.25
@@ -137,8 +137,8 @@
 	void clear_overlay();
 	void grab_overlay(int16 *, int);
 	void copy_rect_overlay(const int16 *, int, int, int, int, int);
-	virtual int16 get_height();
-	virtual int16 get_width();
+	virtual int16 getHeight();
+	virtual int16 getWidth();
 
 
 	static OSystem *create(int gfx_mode, bool full_screen);
@@ -1106,11 +1106,11 @@
 	}
 }
 
-int16 OSystem_X11::get_height() {
+int16 OSystem_X11::getHeight() {
 	return fb_height;
 }
 
-int16 OSystem_X11::get_width() {
+int16 OSystem_X11::getWidth() {
 	return fb_width;
 }
 





More information about the Scummvm-git-logs mailing list