aboutsummaryrefslogtreecommitdiff
path: root/examples/ex04a_textures.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2013-11-23 19:08:59 +0100
committerraysan5 <raysan5@gmail.com>2013-11-23 19:08:59 +0100
commitdf0c95952304efdc7740e4f2ce559ccedb203e76 (patch)
tree175f2009b97cfb811737f547c7db55a587cd4f36 /examples/ex04a_textures.c
parent0ae8fab83a193e3cba68409872cb8f660dbcc80c (diff)
downloadraylib-df0c95952304efdc7740e4f2ce559ccedb203e76.tar.gz
raylib-df0c95952304efdc7740e4f2ce559ccedb203e76.zip
Renamed ex02b and added image placeholder
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
//----------------------------------------------------------