aboutsummaryrefslogtreecommitdiff
path: root/examples
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
parent0ae8fab83a193e3cba68409872cb8f660dbcc80c (diff)
downloadraylib-df0c95952304efdc7740e4f2ce559ccedb203e76.tar.gz
raylib-df0c95952304efdc7740e4f2ce559ccedb203e76.zip
Renamed ex02b and added image placeholder
Diffstat (limited to 'examples')
-rw-r--r--examples/ex02b_basic_shapes.c (renamed from examples/ex02b_shapes.c)0
-rw-r--r--examples/ex02b_basic_shapes.pngbin0 -> 3913 bytes
-rw-r--r--examples/ex04a_textures.c5
3 files changed, 3 insertions, 2 deletions
diff --git a/examples/ex02b_shapes.c b/examples/ex02b_basic_shapes.c
index 5b9ad560..5b9ad560 100644
--- a/examples/ex02b_shapes.c
+++ b/examples/ex02b_basic_shapes.c
diff --git a/examples/ex02b_basic_shapes.png b/examples/ex02b_basic_shapes.png
new file mode 100644
index 00000000..f18ae044
--- /dev/null
+++ b/examples/ex02b_basic_shapes.png
Binary files differ
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
//----------------------------------------------------------