Skip to content

Commit

Permalink
NoGUI: missing override keyword GetWindowSystemInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
howard0su committed Mar 23, 2020
1 parent 9ac2805 commit fb7fbb4
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 fb7fbb4

Please sign in to comment.