diff options
Diffstat (limited to 'src/resources/mobileopenglscreenshothelper.cpp')
-rw-r--r-- | src/resources/mobileopenglscreenshothelper.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/resources/mobileopenglscreenshothelper.cpp b/src/resources/mobileopenglscreenshothelper.cpp index fb0be453a..6772c8fd0 100644 --- a/src/resources/mobileopenglscreenshothelper.cpp +++ b/src/resources/mobileopenglscreenshothelper.cpp @@ -50,15 +50,17 @@ MobileOpenGLScreenshotHelper::~MobileOpenGLScreenshotHelper() void MobileOpenGLScreenshotHelper::prepare() { if (config.getBoolValue("usefbo")) - graphicsManager.createFBO(mainGraphics->mWidth, - mainGraphics->mHeight, - &mFbo); + graphicsManager.createFBO(mainGraphics->mActualWidth, + mainGraphics->mActualHeight, + &mFbo); } SDL_Surface *MobileOpenGLScreenshotHelper::getScreenshot() { - const int h = mainGraphics->mHeight; - const int w = mainGraphics->mWidth - (mainGraphics->mWidth % 4); + const int h = mainGraphics->mActualHeight; + const int w = mainGraphics->mActualWidth + -(mainGraphics->mActualWidth % 4); + GLint pack = 1; SDL_Surface *const tmpImage = MSDL_CreateRGBSurface( |