diff options
| author | raysan5 <raysan5@gmail.com> | 2016-06-25 22:41:45 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-06-25 22:41:45 +0200 |
| commit | f9f33926f79b972b10c275d7d742c92337a7b0a2 (patch) | |
| tree | f75494954bb709ca60c3333ffa14ca5682810e10 /examples | |
| parent | 9ee96bea95e2b9b2180edee8ed01171fb64bfcd6 (diff) | |
| download | raylib-f9f33926f79b972b10c275d7d742c92337a7b0a2.tar.gz raylib-f9f33926f79b972b10c275d7d742c92337a7b0a2.zip | |
Corrected window size to unify with other examples
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/core_color_select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/core_color_select.c b/examples/core_color_select.c index 118dc88a..002a6931 100644 --- a/examples/core_color_select.c +++ b/examples/core_color_select.c @@ -16,7 +16,7 @@ int main() // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; - int screenHeight = 400; + int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - color selection (collision detection)"); @@ -30,7 +30,7 @@ int main() for (int i = 0; i < 21; i++) { colorsRecs[i].x = 20 + 100*(i%7) + 10*(i%7); - colorsRecs[i].y = 40 + 100*(i/7) + 10*(i/7); + colorsRecs[i].y = 60 + 100*(i/7) + 10*(i/7); colorsRecs[i].width = 100; colorsRecs[i].height = 100; } |
