diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-09 22:46:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-09 23:50:09 +0300 |
commit | ff11053f5f638749c3564c464dc41ebc474b4897 (patch) | |
tree | 8cf7ed8485528c7498612199c7ca56a6fd84f5e5 /src/gui/debugwindow.cpp | |
parent | b2c1c301b1e39fbbbb5bde3d4d55d14a9873b51f (diff) | |
download | plus-ff11053f5f638749c3564c464dc41ebc474b4897.tar.gz plus-ff11053f5f638749c3564c464dc41ebc474b4897.tar.bz2 plus-ff11053f5f638749c3564c464dc41ebc474b4897.tar.xz plus-ff11053f5f638749c3564c464dc41ebc474b4897.zip |
Move static methods from Image class to ImageHelper class.
Remove SDL merge method. It was very slow and unused.
Diffstat (limited to 'src/gui/debugwindow.cpp')
-rw-r--r-- | src/gui/debugwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 0976f73b5..6d0895426 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -41,7 +41,7 @@ #include "gui/widgets/tab.h" #include "gui/widgets/tabbedarea.h" -#include "resources/image.h" +#include "resources/imagehelper.h" #include "net/packetcounters.h" @@ -158,7 +158,7 @@ MapDebugTab::MapDebugTab() : mUpdateTime = 0; #ifdef USE_OPENGL - switch (Image::getLoadAsOpenGL()) + switch (ImageHelper::getLoadAsOpenGL()) { case 0: mFPSText = _("%d FPS (Software)"); |