From 62406259d755d97324aec0856fc637d628d3df22 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 3 Dec 2020 20:33:46 +0100 Subject: Corrected minor windows flags issues --- examples/core/core_window_flags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') 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); -- cgit v1.2.3