[Scummvm-cvs-logs] CVS: scummvm/gui dialog.h,1.12,1.13

Max Horn fingolfin at users.sourceforge.net
Thu Jul 18 18:42:01 CEST 2002


Update of /cvsroot/scummvm/scummvm/gui
In directory usw-pr-cvs1:/tmp/cvs-serv632

Modified Files:
	dialog.h 
Log Message:
disable transparency for the pause dialog for now

Index: dialog.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/dialog.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- dialog.h	18 Jul 2002 20:26:35 -0000	1.12
+++ dialog.h	19 Jul 2002 01:41:41 -0000	1.13
@@ -66,8 +66,8 @@
 	
 	NewGui	*getGui()	{ return _gui; }
 	
-	void	setupScreenBuf();
-	void	teardownScreenBuf();
+	virtual void	setupScreenBuf();
+	virtual void	teardownScreenBuf();
 
 protected:
 	Widget* findWidget(int x, int y); // Find the widget at pos x,y if any
@@ -117,6 +117,11 @@
 			else
 				Dialog::handleKeyDown(key, modifiers);
 		}
+
+	// Enforce no transparency!
+	virtual void	setupScreenBuf() {}
+	virtual void	teardownScreenBuf() {}
+
 };
 
 #endif





More information about the Scummvm-git-logs mailing list