aboutsummaryrefslogtreecommitdiff
path: root/examples/textures_logo_raylib.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-01-16 12:52:55 +0100
committerraysan5 <raysan5@gmail.com>2016-01-16 12:52:55 +0100
commit183795b8aa78fdf0b8064d72d77eaea8e7b6397b (patch)
tree1d18bec6a5510d3c225f05d09cc9649492cb4209 /examples/textures_logo_raylib.c
parent91e00431d48ad90602af30ee015922243cf975cd (diff)
downloadraylib-183795b8aa78fdf0b8064d72d77eaea8e7b6397b.tar.gz
raylib-183795b8aa78fdf0b8064d72d77eaea8e7b6397b.zip
Review literals type
Diffstat (limited to 'examples/textures_logo_raylib.c')
-rw-r--r--examples/textures_logo_raylib.c3
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);