[UI] Remove `virtual` from Window::IsFullscreen (tracked entirely by common code)

This commit is contained in:
Triang3l 2022-02-16 20:37:53 +03:00
parent 9e803ccf25
commit 294c76f7c4
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ class Window {
// Desired state stored by the common Window, modifiable both externally and
// by the implementation (including from SetFullscreen itself).
virtual bool IsFullscreen() const { return fullscreen_; }
bool IsFullscreen() const { return fullscreen_; }
void SetFullscreen(bool new_fullscreen);
// Desired state stored by the common Window, externally modifiable, read-only