diff options
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/graphics.h b/src/graphics.h index 04234d415..a90e1d0e7 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -392,7 +392,10 @@ class Graphics : public gcn::Graphics bool videoInfo(); - SDL_Window* mWindow; + SDL_Window *mWindow; +#ifdef USE_SDL2 + SDL_Renderer *mRenderer; +#endif int mBpp; bool mAlpha; bool mFullscreen; |