summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2014-03-11 06:55:00 +0100
committerTillmann Karras <tilkax@gmail.com>2014-03-17 02:55:55 +0100
commit2fcaca0603f750bb68349e8bbd506b53dd30915b (patch)
tree8f90b4ee86386d9f54fb2d35f40c68f7e40cd335 /Source/Core/VideoCommon
parent3fc9ca07892e123a8be5ee3d1f22693e896eb619 (diff)
More range-based loops and overrides
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/VideoBackendBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VideoBackendBase.h b/Source/Core/VideoCommon/VideoBackendBase.h
index fcbe66bcce..2dcf6c43a0 100644
--- a/Source/Core/VideoCommon/VideoBackendBase.h
+++ b/Source/Core/VideoCommon/VideoBackendBase.h
@@ -80,8 +80,8 @@ public:
virtual void Shutdown() = 0;
virtual void RunLoop(bool enable) = 0;
- virtual std::string GetName() = 0;
- virtual std::string GetDisplayName() { return GetName(); }
+ virtual std::string GetName() const = 0;
+ virtual std::string GetDisplayName() const { return GetName(); }
virtual void ShowConfig(void*) {}