diff options
Diffstat (limited to 'examples/textures_logo_raylib.c')
| -rw-r--r-- | examples/textures_logo_raylib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/textures_logo_raylib.c b/examples/textures_logo_raylib.c index 2ebf0867..f2f93128 100644 --- a/examples/textures_logo_raylib.c +++ b/examples/textures_logo_raylib.c @@ -38,8 +38,7 @@ 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, GRAY); |
