summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/NullBackend.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-27 15:50:41 -0400
committerLioncash <mathew1800@gmail.com>2019-07-27 17:33:16 -0400
commitbdcc5853d51d82301a8a05cee721c395fabe918b (patch)
treee2d7a64dbf089c83c67972f467917e4945f3f02e /Source/Core/VideoBackends/Null/NullBackend.cpp
parent3c8f6bca5ab9ead8f47e399a1af5168924702fd8 (diff)
VideoBackends/Null: Remove unnecessary includes
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullBackend.cpp')
-rw-r--r--Source/Core/VideoBackends/Null/NullBackend.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Null/NullBackend.cpp b/Source/Core/VideoBackends/Null/NullBackend.cpp
index 2f353d1fe3..5b0661fe2e 100644
--- a/Source/Core/VideoBackends/Null/NullBackend.cpp
+++ b/Source/Core/VideoBackends/Null/NullBackend.cpp
@@ -13,6 +13,7 @@
#include "VideoBackends/Null/VertexManager.h"
#include "VideoBackends/Null/VideoBackend.h"
+#include "Common/Common.h"
#include "Common/MsgHandler.h"
#include "VideoCommon/FramebufferManager.h"
@@ -97,4 +98,10 @@ void VideoBackend::Shutdown()
ShutdownShared();
}
+
+std::string VideoBackend::GetDisplayName() const
+{
+ // i18n: Null is referring to the null video backend, which renders nothing
+ return _trans("Null");
+}
} // namespace Null