diff options
Diffstat (limited to 'src/render/surfacegraphics.h')
-rw-r--r-- | src/render/surfacegraphics.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h index 7a130dd30..a81ff590c 100644 --- a/src/render/surfacegraphics.h +++ b/src/render/surfacegraphics.h @@ -36,7 +36,7 @@ struct SDL_Surface; /** * A central point of control for graphics. */ -class SurfaceGraphics : public Graphics +class SurfaceGraphics final : public Graphics { public: enum BlitMode @@ -49,7 +49,7 @@ class SurfaceGraphics : public Graphics A_DELETE_COPY(SurfaceGraphics) - virtual ~SurfaceGraphics(); + ~SurfaceGraphics(); void setTarget(SDL_Surface *const target) { mTarget = target; } |