diff options
| author | raysan5 <raysan5@gmail.com> | 2016-01-16 12:52:55 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-01-16 12:52:55 +0100 |
| commit | 183795b8aa78fdf0b8064d72d77eaea8e7b6397b (patch) | |
| tree | 1d18bec6a5510d3c225f05d09cc9649492cb4209 /examples/textures_logo_raylib.c | |
| parent | 91e00431d48ad90602af30ee015922243cf975cd (diff) | |
| download | raylib-183795b8aa78fdf0b8064d72d77eaea8e7b6397b.tar.gz raylib-183795b8aa78fdf0b8064d72d77eaea8e7b6397b.zip | |
Review literals type
Diffstat (limited to 'examples/textures_logo_raylib.c')
| -rw-r--r-- | examples/textures_logo_raylib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/textures_logo_raylib.c b/examples/textures_logo_raylib.c index 2ebf0867..f2f93128 100644 --- a/examples/textures_logo_raylib.c +++ b/examples/textures_logo_raylib.c @@ -38,8 +38,7 @@ int main() ClearBackground(RAYWHITE); - DrawTexture(texture, screenWidth/2 - texture.width/2, - screenHeight/2 - texture.height/2, WHITE); + DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE); DrawText("this IS a texture!", 360, 370, 10, GRAY); |
