diff options
Diffstat (limited to 'src/test/testlauncher.cpp')
-rw-r--r-- | src/test/testlauncher.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/testlauncher.cpp b/src/test/testlauncher.cpp index ca47f1b29..7f8dc0d2a 100644 --- a/src/test/testlauncher.cpp +++ b/src/test/testlauncher.cpp @@ -43,6 +43,7 @@ #include "resources/imagewriter.h" #include "resources/mstack.h" #include "resources/openglimagehelper.h" +#include "resources/screenshothelper.h" #include "resources/surfaceimagehelper.h" #include "resources/wallpaper.h" @@ -337,7 +338,7 @@ int TestLauncher::testTextures() mainGraphics->updateScreen(); mainGraphics->drawImage(subImage, 0, 0); delete subImage; - SDL_Surface *const screen1 = mainGraphics->getScreenshot(); + SDL_Surface *const screen1 = screenshortHelper->getScreenshot(); SDL_Surface *const screen2 = imageHelper->convertTo32Bit(screen1); SDL_FreeSurface(screen1); if (!screen2) |