summaryrefslogtreecommitdiff
path: root/src/gui/gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r--src/gui/gui.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index cb79e54b..c980389f 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -28,7 +28,7 @@
#include <guichan/imagefont.hpp>
#ifdef USE_OPENGL
-#include <guichan/opengl/openglimageloader.hpp>
+#include "../resources/openglsdlimageloader.h"
#endif
#include <guichan/sdl/sdlinput.hpp>
@@ -92,16 +92,14 @@ Gui::Gui(Graphics *graphics):
{
// Set graphics
setGraphics(graphics);
+
+ // Set image loader
#ifdef USE_OPENGL
if (config.getValue("opengl", 0)) {
-
- // Set image loader
- mHostImageLoader = new SDLImageLoader();
- mImageLoader = new gcn::OpenGLImageLoader(mHostImageLoader);
+ mImageLoader = new OpenGLSDLImageLoader();
} else
#endif
{
- // Set image loader
mImageLoader = new SDLImageLoader();
}