diff options
author | Johannes Schickel | 2013-10-24 00:03:09 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-10-24 00:03:09 +0200 |
commit | 281672e1718d5f960061b714f79924125922e1e5 (patch) | |
tree | e75166443a07dd3aecc818c95e929af951c5ee71 /backends/graphics/opengl | |
parent | 1fc5d52e906186bdde6e5c46e84268b9c958691c (diff) | |
download | scummvm-rg350-281672e1718d5f960061b714f79924125922e1e5.tar.gz scummvm-rg350-281672e1718d5f960061b714f79924125922e1e5.tar.bz2 scummvm-rg350-281672e1718d5f960061b714f79924125922e1e5.zip |
SDL: Let SdlGraphicsManager inherit from GraphicsManager.
Diffstat (limited to 'backends/graphics/opengl')
-rw-r--r-- | backends/graphics/opengl/opengl-graphics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/graphics/opengl/opengl-graphics.h b/backends/graphics/opengl/opengl-graphics.h index d2d0358407..93c0c5bc83 100644 --- a/backends/graphics/opengl/opengl-graphics.h +++ b/backends/graphics/opengl/opengl-graphics.h @@ -47,7 +47,7 @@ enum { GFX_NEAREST = 1 }; -class OpenGLGraphicsManager : public GraphicsManager { +class OpenGLGraphicsManager : virtual public GraphicsManager { public: OpenGLGraphicsManager(); virtual ~OpenGLGraphicsManager(); |