diff options
| author | Ray <[email protected]> | 2020-10-05 20:11:54 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-10-05 20:11:54 +0200 |
| commit | 55b7b3e82e091906069bb60fa529239358de5f93 (patch) | |
| tree | 8f6f4e26edd6f5bb01978125d7616d866a29204e /examples/web/shapes/shapes_easings_box_anim.c | |
| parent | 0f62427a0c1ea747a6181a41aef496e389f46e7e (diff) | |
| download | raylib.com-55b7b3e82e091906069bb60fa529239358de5f93.tar.gz raylib.com-55b7b3e82e091906069bb60fa529239358de5f93.zip | |
Review "aggreagate initializations"
Diffstat (limited to 'examples/web/shapes/shapes_easings_box_anim.c')
| -rw-r--r-- | examples/web/shapes/shapes_easings_box_anim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/web/shapes/shapes_easings_box_anim.c b/examples/web/shapes/shapes_easings_box_anim.c index 4def3ed..2c954ad 100644 --- a/examples/web/shapes/shapes_easings_box_anim.c +++ b/examples/web/shapes/shapes_easings_box_anim.c @@ -25,7 +25,7 @@ const int screenHeight = 450; // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) -Rectangle rec = { 0.0f }; +Rectangle rec = { 0 }; float rotation = 0.0f; float alpha = 1.0f; |
