summaryrefslogtreecommitdiffhomepage
path: root/games/skully_escape/screens/screen_kitchen.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/skully_escape/screens/screen_kitchen.c')
-rw-r--r--games/skully_escape/screens/screen_kitchen.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/games/skully_escape/screens/screen_kitchen.c b/games/skully_escape/screens/screen_kitchen.c
index a6b8924d..01ce326a 100644
--- a/games/skully_escape/screens/screen_kitchen.c
+++ b/games/skully_escape/screens/screen_kitchen.c
@@ -4,7 +4,7 @@
*
* Gameplay Screen Functions Definitions (Init, Update, Draw, Unload)
*
-* Copyright (c) 2014 Ramon Santamaria (Ray San - [email protected])
+* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
@@ -354,11 +354,11 @@ void DrawKitchenScreen(void)
if (msgState == 0)
{
- DrawTextEx(font, msgBuffer, (Vector2){ msgPosX, 80 }, font.size, 2, WHITE);
+ DrawTextEx(font, msgBuffer, (Vector2){ msgPosX, 80 }, font.baseSize, 2, WHITE);
}
else if (msgState == 1)
{
- DrawTextEx(font, message, (Vector2){ msgPosX, 80 }, font.size, 2, WHITE);
+ DrawTextEx(font, message, (Vector2){ msgPosX, 80 }, font.baseSize, 2, WHITE);
if ((msgCounter/30)%2) DrawText("PRESS ENTER or CLICK", GetScreenWidth() - 280, 200, 20, BLACK);
}
@@ -366,7 +366,7 @@ void DrawKitchenScreen(void)
{
if ((msgCounter/30)%2)
{
- DrawTextEx(font, "CHOOSE WISELY!", (Vector2){ 300, 95 }, font.size*2, 2, WHITE);
+ DrawTextEx(font, "CHOOSE WISELY!", (Vector2){ 300, 95 }, font.baseSize*2, 2, WHITE);
DrawRectangleRec(closet.bounds, Fade(RED, 0.6f));
DrawRectangleRec(window.bounds, Fade(RED, 0.6f));
@@ -400,4 +400,4 @@ void UnloadKitchenScreen(void)
int FinishKitchenScreen(void)
{
return finishScreen;
-} \ No newline at end of file
+}