diff options
author | Johannes Schickel | 2015-11-16 16:03:44 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-11-16 16:03:44 +0100 |
commit | eee8ef9dce40c3f5be80f38822fe7e37ddadb432 (patch) | |
tree | 1174cba9024ebeaf7ab5ea5c8d434adc2ab14ae8 /graphics/pixelformat.h | |
parent | b72d1b9bc75786290369d59fc6bbe96a928760fe (diff) | |
download | scummvm-rg350-eee8ef9dce40c3f5be80f38822fe7e37ddadb432.tar.gz scummvm-rg350-eee8ef9dce40c3f5be80f38822fe7e37ddadb432.tar.bz2 scummvm-rg350-eee8ef9dce40c3f5be80f38822fe7e37ddadb432.zip |
GRAPHICS: Make PixelFormat::toString const.
Diffstat (limited to 'graphics/pixelformat.h')
-rw-r--r-- | graphics/pixelformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/pixelformat.h b/graphics/pixelformat.h index 3e6c53b05f..9dd06241b7 100644 --- a/graphics/pixelformat.h +++ b/graphics/pixelformat.h @@ -262,7 +262,7 @@ struct PixelFormat { return 0; } - Common::String toString(); + Common::String toString() const; }; } // End of namespace Graphics |