summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-19 12:54:42 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-19 12:54:42 +0300
commita073031f64271d2a0da6b5c2d39ff221a145b589 (patch)
tree4caa3047a3d52cedf795a33f56213f4c7276c59e
parentfca6de3288adc230f0e42f82973697615932bbe8 (diff)
downloadplus-a073031f64271d2a0da6b5c2d39ff221a145b589.tar.gz
plus-a073031f64271d2a0da6b5c2d39ff221a145b589.tar.bz2
plus-a073031f64271d2a0da6b5c2d39ff221a145b589.tar.xz
plus-a073031f64271d2a0da6b5c2d39ff221a145b589.zip
rename "fast opengl" into "normal opengl".
-rw-r--r--src/gui/debugwindow.cpp2
-rw-r--r--src/gui/setup_perfomance.cpp2
-rw-r--r--src/render/normalopenglgraphics.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp
index b3cff3087..39f07dffb 100644
--- a/src/gui/debugwindow.cpp
+++ b/src/gui/debugwindow.cpp
@@ -208,7 +208,7 @@ MapDebugTab::MapDebugTab(const Widget2 *const widget) :
case RENDER_LAST:
default:
// TRANSLATORS: debug window label
- mFPSText = _("%d FPS (fast OpenGL)");
+ mFPSText = _("%d FPS (normal OpenGL)");
break;
case RENDER_SAFE_OPENGL:
// TRANSLATORS: debug window label
diff --git a/src/gui/setup_perfomance.cpp b/src/gui/setup_perfomance.cpp
index 8c8969335..72cd08507 100644
--- a/src/gui/setup_perfomance.cpp
+++ b/src/gui/setup_perfomance.cpp
@@ -128,7 +128,7 @@ Setup_Perfomance::Setup_Perfomance(const Widget2 *const widget) :
mTexturesList->fillFromArray(&texturesList[0], texturesListSize);
// TRANSLATORS: settings option
- new SetupItemDropDown(_("Enable texture compression (fast OpenGL)"), "",
+ new SetupItemDropDown(_("Enable texture compression (OpenGL)"), "",
"compresstextures", this, "compresstexturesEvent", mTexturesList, 100);
// TRANSLATORS: settings option
diff --git a/src/render/normalopenglgraphics.cpp b/src/render/normalopenglgraphics.cpp
index f6bbf4311..fe5d14e12 100644
--- a/src/render/normalopenglgraphics.cpp
+++ b/src/render/normalopenglgraphics.cpp
@@ -64,7 +64,7 @@ NormalOpenGLGraphics::NormalOpenGLGraphics():
mFbo()
{
mOpenGL = RENDER_NORMAL_OPENGL;
- mName = "fast OpenGL";
+ mName = "normal OpenGL";
}
NormalOpenGLGraphics::~NormalOpenGLGraphics()