Skip to content

Commit

Permalink
Merge pull request #8700 from howard0su/add_override
Browse files Browse the repository at this point in the history
NoGUI: missing override in PlatformX11
  • Loading branch information
stenzek committed Mar 24, 2020
2 parents 76b97a4 + fb7fbb4 commit 323bffe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Core/DolphinNoGUI/PlatformFBDev.cpp
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinNoGUI/PlatformX11.cpp
Expand Up @@ -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();
Expand Down

0 comments on commit 323bffe

Please sign in to comment.