diff --git a/examples/ex02b_shapes.c b/examples/ex02b_basic_shapes.c similarity index 100% rename from examples/ex02b_shapes.c rename to examples/ex02b_basic_shapes.c diff --git a/examples/ex02b_basic_shapes.png b/examples/ex02b_basic_shapes.png new file mode 100644 index 000000000..f18ae0442 Binary files /dev/null and b/examples/ex02b_basic_shapes.png differ diff --git a/examples/ex04a_textures.c b/examples/ex04a_textures.c index e0457c0a2..3a751322d 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 //----------------------------------------------------------