From fb7fbb4a7bf9e620d7b4fa5e46f09fa501a46547 Mon Sep 17 00:00:00 2001 From: Jun Su Date: Mon, 23 Mar 2020 16:33:55 +0800 Subject: [PATCH] NoGUI: missing override keyword GetWindowSystemInfo --- Source/Core/DolphinNoGUI/PlatformFBDev.cpp | 2 +- Source/Core/DolphinNoGUI/PlatformX11.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinNoGUI/PlatformFBDev.cpp b/Source/Core/DolphinNoGUI/PlatformFBDev.cpp index 04770d46ea8b..09d9e6d4f3fc 100644 --- a/Source/Core/DolphinNoGUI/PlatformFBDev.cpp +++ b/Source/Core/DolphinNoGUI/PlatformFBDev.cpp @@ -35,7 +35,7 @@ class PlatformFBDev : public Platform 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 87d401cc727d..8eb8f2b80228 100644 --- a/Source/Core/DolphinNoGUI/PlatformX11.cpp +++ b/Source/Core/DolphinNoGUI/PlatformX11.cpp @@ -37,7 +37,7 @@ class PlatformX11 : public Platform void SetTitle(const std::string& string) override; void MainLoop() override; - WindowSystemInfo GetWindowSystemInfo() const; + WindowSystemInfo GetWindowSystemInfo() const override; private: void CloseDisplay();