[Scummvm-cvs-logs] SF.net SVN: scummvm:[55807] scummvm/trunk/backends/graphics/null/ null-graphics.h

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Mon Feb 7 18:52:58 CET 2011


Revision: 55807
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55807&view=rev
Author:   fingolfin
Date:     2011-02-07 17:52:58 +0000 (Mon, 07 Feb 2011)

Log Message:
-----------
BACKENDs: Fix const correctness in "null" graphics manager

Modified Paths:
--------------
    scummvm/trunk/backends/graphics/null/null-graphics.h

Modified: scummvm/trunk/backends/graphics/null/null-graphics.h
===================================================================
--- scummvm/trunk/backends/graphics/null/null-graphics.h	2011-02-07 17:52:38 UTC (rev 55806)
+++ scummvm/trunk/backends/graphics/null/null-graphics.h	2011-02-07 17:52:58 UTC (rev 55807)
@@ -45,7 +45,7 @@
 	inline Graphics::PixelFormat getScreenFormat() const {
 		return Graphics::PixelFormat::createFormatCLUT8();
 	}
-	inline Common::List<Graphics::PixelFormat> getSupportedFormats() {
+	inline Common::List<Graphics::PixelFormat> getSupportedFormats() const {
 		Common::List<Graphics::PixelFormat> list;
 		list.push_back(Graphics::PixelFormat::createFormatCLUT8());
 		return list;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list