summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorRay <[email protected]>2020-12-03 20:33:46 +0100
committerRay <[email protected]>2020-12-03 20:33:46 +0100
commit62406259d755d97324aec0856fc637d628d3df22 (patch)
tree9252ab1e57074f3e166efe0a29e4bef46f6b0f62 /examples
parentdd45d0ed6449ee091f1633f0c5e541e96b9fc7c2 (diff)
downloadraylib-62406259d755d97324aec0856fc637d628d3df22.tar.gz
raylib-62406259d755d97324aec0856fc637d628d3df22.zip
Corrected minor windows flags issues
Diffstat (limited to 'examples')
-rw-r--r--examples/core/core_window_flags.c2
1 files changed, 1 insertions, 1 deletions
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);