aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
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
//----------------------------------------------------------