diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-01 00:50:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-01 00:50:45 +0300 |
commit | af374aa2b2944749193af49cdca28532cf56fae2 (patch) | |
tree | b3e4fd2609a00175dbd94e42ab3d72984b4a051b /src/resources/surfaceimagehelper.cpp | |
parent | 00cda69b883d6354f093be6ee39a7936cb798979 (diff) | |
download | ManaVerse-af374aa2b2944749193af49cdca28532cf56fae2.tar.gz ManaVerse-af374aa2b2944749193af49cdca28532cf56fae2.tar.bz2 ManaVerse-af374aa2b2944749193af49cdca28532cf56fae2.tar.xz ManaVerse-af374aa2b2944749193af49cdca28532cf56fae2.zip |
add renderer enum.
Diffstat (limited to 'src/resources/surfaceimagehelper.cpp')
-rw-r--r-- | src/resources/surfaceimagehelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/surfaceimagehelper.cpp b/src/resources/surfaceimagehelper.cpp index 44cee32d9..b249dfea9 100644 --- a/src/resources/surfaceimagehelper.cpp +++ b/src/resources/surfaceimagehelper.cpp @@ -144,9 +144,9 @@ Image *SurfaceImageHelper::_SDLload(SDL_Surface *tmpImage) const return new Image(image, false, nullptr); } -int SurfaceImageHelper::useOpenGL() const +RenderType SurfaceImageHelper::useOpenGL() const { - return 0; + return RENDER_SOFTWARE; } SDL_Surface *SurfaceImageHelper::create32BitSurface(int width, |