summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/OGL/main.cpp
diff options
context:
space:
mode:
authorTechjar <tecknojar@gmail.com>2018-06-30 04:53:24 -0400
committerTechjar <tecknojar@gmail.com>2018-06-30 06:30:19 -0400
commitdc2f22516c07342203ed7ee2e9efc75632cdc200 (patch)
tree78f716948ad6e6f3d8380d6b4942f7ffd20224f2 /Source/Core/VideoBackends/OGL/main.cpp
parente22c5333ab50c3e84774ce831eaeba48bcea5901 (diff)
Mark all video backend names for translation
Diffstat (limited to 'Source/Core/VideoBackends/OGL/main.cpp')
-rw-r--r--Source/Core/VideoBackends/OGL/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/OGL/main.cpp b/Source/Core/VideoBackends/OGL/main.cpp
index 1ac21b03b0..52d643543f 100644
--- a/Source/Core/VideoBackends/OGL/main.cpp
+++ b/Source/Core/VideoBackends/OGL/main.cpp
@@ -38,6 +38,7 @@ Make AA apply instantly during gameplay if possible
#include <string>
#include <vector>
+#include "Common/Common.h"
#include "Common/GL/GLInterfaceBase.h"
#include "Common/GL/GLUtil.h"
#include "Common/MsgHandler.h"
@@ -66,9 +67,9 @@ std::string VideoBackend::GetName() const
std::string VideoBackend::GetDisplayName() const
{
if (GLInterface != nullptr && GLInterface->GetMode() == GLInterfaceMode::MODE_OPENGLES3)
- return "OpenGLES";
+ return _trans("OpenGL ES");
else
- return "OpenGL";
+ return _trans("OpenGL");
}
void VideoBackend::InitBackendInfo()