diff options
Diffstat (limited to 'src/graphics.cpp')
-rw-r--r-- | src/graphics.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/graphics.cpp b/src/graphics.cpp index f32d35f3e..7120afb06 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -57,10 +57,12 @@ int MSDL_gfxBlitRGBA(SDL_Surface *src, SDL_Rect *srcrect, } Graphics::Graphics() : - SDLGraphics(), + gcn::Graphics(), mWidth(0), mHeight(0), + mTarget(nullptr), mBpp(0), + mAlpha(false), mFullscreen(false), mHWAccel(false), mRedraw(false), @@ -73,6 +75,7 @@ Graphics::Graphics() : mName("Software"), mStartFreeMem(0), mSync(false), + mColor(), mColor2() { mRect.x = 0; |