aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2011-02-07 17:52:58 +0000
committerMax Horn2011-02-07 17:52:58 +0000
commitda01896ee01c00d3a155e3b8c5e5847f8e04b3e4 (patch)
tree80c100ecd58a9fd44ea534ca30f68997f553d7db /backends
parentab039812e7d0a0202317c61a2cb64874e4d0c410 (diff)
downloadscummvm-rg350-da01896ee01c00d3a155e3b8c5e5847f8e04b3e4.tar.gz
scummvm-rg350-da01896ee01c00d3a155e3b8c5e5847f8e04b3e4.tar.bz2
scummvm-rg350-da01896ee01c00d3a155e3b8c5e5847f8e04b3e4.zip
BACKENDs: Fix const correctness in "null" graphics manager
svn-id: r55807
Diffstat (limited to 'backends')
-rw-r--r--backends/graphics/null/null-graphics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/graphics/null/null-graphics.h b/backends/graphics/null/null-graphics.h
index ff4f994445..2c15f56979 100644
--- a/backends/graphics/null/null-graphics.h
+++ b/backends/graphics/null/null-graphics.h
@@ -45,7 +45,7 @@ public:
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;