diff options
| author | Ray <[email protected]> | 2022-03-22 18:45:41 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-03-22 18:45:41 +0100 |
| commit | cb62cb675fb4b07a7afbc5ef53f5e502b3a9ef7e (patch) | |
| tree | dcae61a846051cb54acacf10157e11ca6153e298 /examples/textures | |
| parent | 40794da9e4d5ea677bf592b5af607a7d903e05a8 (diff) | |
| download | raylib-cb62cb675fb4b07a7afbc5ef53f5e502b3a9ef7e.tar.gz raylib-cb62cb675fb4b07a7afbc5ef53f5e502b3a9ef7e.zip | |
Minor tweaks `const`
Diffstat (limited to 'examples/textures')
| -rw-r--r-- | examples/textures/textures_draw_tiled.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/textures/textures_draw_tiled.c b/examples/textures/textures_draw_tiled.c index bc2b1724..f8e78650 100644 --- a/examples/textures/textures_draw_tiled.c +++ b/examples/textures/textures_draw_tiled.c @@ -19,8 +19,8 @@ int main(int argc, char **argv) { // Initialization //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; + const int screenWidth = 800; + const int screenHeight = 450; SetConfigFlags(FLAG_WINDOW_RESIZABLE); // Make the window resizable InitWindow(screenWidth, screenHeight, "raylib [textures] example - Draw part of a texture tiled"); |
