diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-21 22:45:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-24 21:08:15 +0300 |
commit | e5521effc043cdf9d781816c0d72bd17830e34f8 (patch) | |
tree | 091d8fb497dfe236ccaac0cb6f0da88479a9e365 /src/sdl2graphics.cpp | |
parent | e1cacb5f675b782ba1cfee8906c78ec7793807c8 (diff) | |
download | plus-e5521effc043cdf9d781816c0d72bd17830e34f8.tar.gz plus-e5521effc043cdf9d781816c0d72bd17830e34f8.tar.bz2 plus-e5521effc043cdf9d781816c0d72bd17830e34f8.tar.xz plus-e5521effc043cdf9d781816c0d72bd17830e34f8.zip |
move SDL_SetVideoMode calls into graphicsmanager.
Diffstat (limited to 'src/sdl2graphics.cpp')
-rw-r--r-- | src/sdl2graphics.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sdl2graphics.cpp b/src/sdl2graphics.cpp index d5e984700..99f022bcb 100644 --- a/src/sdl2graphics.cpp +++ b/src/sdl2graphics.cpp @@ -1138,8 +1138,11 @@ bool SDLGraphics::setVideoMode(const int w, const int h, const int bpp, { setMainFlags(w, h, bpp, fs, hwaccel, resize, noFrame); - if (!(mWindow = SDL_SetVideoMode(w, h, bpp, getSoftwareFlags()))) + if (!(mWindow = graphicsManager.createWindow(w, h, bpp, + getSoftwareFlags()))) + { return false; + } mRect.w = static_cast<uint16_t>(mWindow->w); mRect.h = static_cast<uint16_t>(mWindow->h); |