diff options
author | Johannes Schickel | 2010-11-29 19:28:19 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-11-29 19:28:19 +0000 |
commit | ff7357cfc5f0c84d82e99e49419ae0fb5370aab5 (patch) | |
tree | 21810ffb5c9e0a9121585a2fa3128e1eddfa8344 /backends/graphics | |
parent | c0c7bcf30ee56ecb92347f94177c65c9a618c74e (diff) | |
download | scummvm-rg350-ff7357cfc5f0c84d82e99e49419ae0fb5370aab5.tar.gz scummvm-rg350-ff7357cfc5f0c84d82e99e49419ae0fb5370aab5.tar.bz2 scummvm-rg350-ff7357cfc5f0c84d82e99e49419ae0fb5370aab5.zip |
NULL: Remove extra semicolons in null-graphics.h
svn-id: r54587
Diffstat (limited to 'backends/graphics')
-rw-r--r-- | backends/graphics/null/null-graphics.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/graphics/null/null-graphics.h b/backends/graphics/null/null-graphics.h index 4c75a9faba..ff4f994445 100644 --- a/backends/graphics/null/null-graphics.h +++ b/backends/graphics/null/null-graphics.h @@ -44,12 +44,12 @@ public: int getGraphicsMode() const { return 0; } inline Graphics::PixelFormat getScreenFormat() const { return Graphics::PixelFormat::createFormatCLUT8(); - }; + } inline Common::List<Graphics::PixelFormat> getSupportedFormats() { Common::List<Graphics::PixelFormat> list; list.push_back(Graphics::PixelFormat::createFormatCLUT8()); return list; - }; + } void initSize(uint width, uint height, const Graphics::PixelFormat *format = NULL) {} virtual int getScreenChangeID() const { return 0; } |