summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI
diff options
context:
space:
mode:
authorJun Su <howard0su@gmail.com>2020-03-23 16:33:55 +0800
committerJun Su <howard0su@gmail.com>2020-03-23 16:35:45 +0800
commitfb7fbb4a7bf9e620d7b4fa5e46f09fa501a46547 (patch)
treeb3408efa111617ebe32f0ff8ca1711b0172c7dd1 /Source/Core/DolphinNoGUI
parent9ac28054df5fc69f7fb16c6ccf49123448b39926 (diff)
NoGUI: missing override keyword GetWindowSystemInfo
Diffstat (limited to 'Source/Core/DolphinNoGUI')
-rw-r--r--Source/Core/DolphinNoGUI/PlatformFBDev.cpp2
-rw-r--r--Source/Core/DolphinNoGUI/PlatformX11.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinNoGUI/PlatformFBDev.cpp b/Source/Core/DolphinNoGUI/PlatformFBDev.cpp
index 04770d46ea..09d9e6d4f3 100644
--- a/Source/Core/DolphinNoGUI/PlatformFBDev.cpp
+++ b/Source/Core/DolphinNoGUI/PlatformFBDev.cpp
@@ -35,7 +35,7 @@ public:
void SetTitle(const std::string& string) override;
void MainLoop() override;
- WindowSystemInfo GetWindowSystemInfo() const;
+ WindowSystemInfo GetWindowSystemInfo() const override;
private:
bool OpenFramebuffer();
diff --git a/Source/Core/DolphinNoGUI/PlatformX11.cpp b/Source/Core/DolphinNoGUI/PlatformX11.cpp
index 87d401cc72..8eb8f2b802 100644
--- a/Source/Core/DolphinNoGUI/PlatformX11.cpp
+++ b/Source/Core/DolphinNoGUI/PlatformX11.cpp
@@ -37,7 +37,7 @@ public:
void SetTitle(const std::string& string) override;
void MainLoop() override;
- WindowSystemInfo GetWindowSystemInfo() const;
+ WindowSystemInfo GetWindowSystemInfo() const override;
private:
void CloseDisplay();