diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2019-07-27 15:06:26 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-27 15:06:26 -0700 |
| commit | a9e04e0a72e59ee0cb9e0daf017561b2fb4b93dc (patch) | |
| tree | 94d31652c6e7c9b9e8dde227f6a639ba5beddc9f /Source/Core/VideoBackends/Null/NullBackend.cpp | |
| parent | f04a01eb4ff3a3de58f4abe6c2d40644ad0ae2d4 (diff) | |
| parent | 6db305a4e8e2e646992e32d0d1733ec3ce83d559 (diff) | |
Merge pull request #8267 from lioncash/null
VideoBackends/Null: Minor cleanup
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullBackend.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/NullBackend.cpp | 7 |
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 |
