[UI] Remove `virtual` from Window::IsFullscreen (tracked entirely by common code)
This commit is contained in:
parent
9e803ccf25
commit
294c76f7c4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue