diff options
Diffstat (limited to 'src/graphics.cpp')
-rw-r--r-- | src/graphics.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/graphics.cpp b/src/graphics.cpp index 51c2c4a24..09ea4d880 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -256,21 +256,6 @@ int Graphics::getMemoryUsage() const return 0; } -bool Graphics::setVideoMode(const int w, const int h, const int bpp, - const bool fs, const bool hwaccel, - const bool resize, const bool noFrame) -{ - setMainFlags(w, h, bpp, fs, hwaccel, resize, noFrame); - - if (!(mTarget = SDL_SetVideoMode(w, h, bpp, getSoftwareFlags()))) - return false; - - mRect.w = static_cast<uint16_t>(mTarget->w); - mRect.h = static_cast<uint16_t>(mTarget->h); - - return videoInfo(); -} - bool Graphics::videoInfo() { char videoDriverName[65]; |