aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2014-07-23 19:50:06 +0200
committerraysan5 <raysan5@gmail.com>2014-07-23 19:50:06 +0200
commit56a79797505eb50386b587465707248c091400df (patch)
treec3a4cff9bbd16b81486ada4bf269166abbd11bb7 /src/core.c
parentecb3c47704ccaa349ee4824b019181d700919582 (diff)
downloadraylib-56a79797505eb50386b587465707248c091400df.tar.gz
raylib-56a79797505eb50386b587465707248c091400df.zip
Corrected bugs...
Set default raylib to use OpenGL 1.1 (compatibility issues on ATI cards)
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 4e323db9..1fdf5441 100644
--- a/src/core.c
+++ b/src/core.c
@@ -882,7 +882,7 @@ static void LogoAnimation()
DrawRectangle(windowWidth/2 - 112, windowHeight/2 - 112, 224, 224, Fade(RAYWHITE, alpha));
- DrawText(raylib, 356, 273, 50, Fade(BLACK, alpha));
+ DrawText(raylib, windowWidth/2 - 44, windowHeight/2 + 48, 50, Fade(BLACK, alpha));
}
EndDrawing();