diff options
| author | raysan5 <raysan5@gmail.com> | 2013-11-23 19:08:59 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2013-11-23 19:08:59 +0100 |
| commit | df0c95952304efdc7740e4f2ce559ccedb203e76 (patch) | |
| tree | 175f2009b97cfb811737f547c7db55a587cd4f36 /examples | |
| parent | 0ae8fab83a193e3cba68409872cb8f660dbcc80c (diff) | |
| download | raylib-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.png | bin | 0 -> 3913 bytes | |||
| -rw-r--r-- | examples/ex04a_textures.c | 5 |
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 Binary files differnew file mode 100644 index 00000000..f18ae044 --- /dev/null +++ b/examples/ex02b_basic_shapes.png 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 //---------------------------------------------------------- |
