summaryrefslogtreecommitdiffhomepage
path: root/examples/core/core_basic_window_web.c
diff options
context:
space:
mode:
authorRay <[email protected]>2022-03-22 18:45:41 +0100
committerRay <[email protected]>2022-03-22 18:45:41 +0100
commitcb62cb675fb4b07a7afbc5ef53f5e502b3a9ef7e (patch)
treedcae61a846051cb54acacf10157e11ca6153e298 /examples/core/core_basic_window_web.c
parent40794da9e4d5ea677bf592b5af607a7d903e05a8 (diff)
downloadraylib-cb62cb675fb4b07a7afbc5ef53f5e502b3a9ef7e.tar.gz
raylib-cb62cb675fb4b07a7afbc5ef53f5e502b3a9ef7e.zip
Minor tweaks `const`
Diffstat (limited to 'examples/core/core_basic_window_web.c')
-rw-r--r--examples/core/core_basic_window_web.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/core/core_basic_window_web.c b/examples/core/core_basic_window_web.c
index 8ce1922a..119d4b00 100644
--- a/examples/core/core_basic_window_web.c
+++ b/examples/core/core_basic_window_web.c
@@ -24,8 +24,8 @@
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
-int screenWidth = 800;
-int screenHeight = 450;
+const int screenWidth = 800;
+const int screenHeight = 450;
//----------------------------------------------------------------------------------
// Module Functions Declaration