1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-06-27 23:14:05 +00:00

Fixed a tiny but important mistake.

This commit is contained in:
DaMarkov 2022-02-10 22:07:23 +01:00
parent f42ee1e7f8
commit 455310da1c

View File

@ -38,7 +38,7 @@ public:
bool isFullscreen() const { return m_bFullscreen; }
bool isAdjustScreen() const { return m_bAdjustScreen; }
bool isResizeWindow() const { return m_bResizeWindow; }
void forceResizeWindow() { _resizeWindow(); }
void forceResizeWindow() { m_bResizeWindow = true; resizeWindow(); }
GraphicsDrawer & getDrawer() { return m_drawer; }