diff --git a/examples/core/core_window_flags.c b/examples/core/core_window_flags.c index 7446bade..f3448e9e 100644 --- a/examples/core/core_window_flags.c +++ b/examples/core/core_window_flags.c @@ -148,7 +148,7 @@ int main(void) DrawText(FormatText("Screen Size: [%i, %i]", GetScreenWidth(), GetScreenHeight()), 10, 40, 10, GREEN); // Draw window state info - DrawText("Following flags can set after window creation:", 10, 60, 10, GRAY); + DrawText("Following flags can be set after window creation:", 10, 60, 10, GRAY); if (IsWindowState(FLAG_FULLSCREEN_MODE)) DrawText("[F] FLAG_FULLSCREEN_MODE: on", 10, 80, 10, LIME); else DrawText("[F] FLAG_FULLSCREEN_MODE: off", 10, 80, 10, MAROON); if (IsWindowState(FLAG_WINDOW_RESIZABLE)) DrawText("[R] FLAG_WINDOW_RESIZABLE: on", 10, 100, 10, LIME); diff --git a/src/core.c b/src/core.c index ae833b2b..8411c10e 100644 --- a/src/core.c +++ b/src/core.c @@ -1222,7 +1222,7 @@ void ClearWindowState(unsigned int flags) if (((CORE.Window.flags & FLAG_VSYNC_HINT) > 0) && ((flags & FLAG_VSYNC_HINT) > 0)) { glfwSwapInterval(0); - CORE.Window.flags ^= ~FLAG_VSYNC_HINT; + CORE.Window.flags &= ~FLAG_VSYNC_HINT; } // State change: FLAG_FULLSCREEN_MODE