From 294c76f7c4b4c5a0aa45372a2d32a2fdc48bbf00 Mon Sep 17 00:00:00 2001 From: Triang3l Date: Wed, 16 Feb 2022 20:37:53 +0300 Subject: [PATCH] [UI] Remove `virtual` from Window::IsFullscreen (tracked entirely by common code) --- src/xenia/ui/window.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/ui/window.h b/src/xenia/ui/window.h index 564eaeaea..f3f3bb348 100644 --- a/src/xenia/ui/window.h +++ b/src/xenia/ui/window.h @@ -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