[Scummvm-cvs-logs] CVS: scummvm/scumm nut_renderer.h,1.11,1.12

Max Horn fingolfin at users.sourceforge.net
Fri Jul 4 04:20:14 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv6187

Modified Files:
	nut_renderer.h 
Log Message:
fixed warning regarding overloaded virtual methods

Index: nut_renderer.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/nut_renderer.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- nut_renderer.h	7 Jun 2003 00:33:46 -0000	1.11
+++ nut_renderer.h	4 Jul 2003 11:19:25 -0000	1.12
@@ -39,8 +39,8 @@
 
 	void decodeCodec44(byte *dst, const byte *src, uint32 length);
 
-	virtual void draw2byte(byte *dst, byte *mask, int c, int x, int y, byte color);
-	virtual void drawChar(byte *dst, byte *mask, byte c, int x, int y, byte color);
+	void draw2byte(byte *dst, byte *mask, int c, int x, int y, byte color);
+	void drawChar(byte *dst, byte *mask, byte c, int x, int y, byte color);
 
 public:
 	NutRenderer(Scumm *vm);





More information about the Scummvm-git-logs mailing list