diff options
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; } |