aboutsummaryrefslogtreecommitdiff
path: root/examples/ex04a_textures.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ex04a_textures.c')
-rw-r--r--examples/ex04a_textures.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/ex04a_textures.c b/examples/ex04a_textures.c
index e0457c0a..3a751322 100644
--- a/examples/ex04a_textures.c
+++ b/examples/ex04a_textures.c
@@ -38,7 +38,8 @@ 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, 1, GRAY);
@@ -48,7 +49,7 @@ int main()
// De-Initialization
//---------------------------------------------------------
- UnloadTexture(texture); // Texture unloading
+ UnloadTexture(texture); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//----------------------------------------------------------