summaryrefslogtreecommitdiffhomepage
path: root/templates/standard_game/screens/screen_ending.c
diff options
context:
space:
mode:
Diffstat (limited to 'templates/standard_game/screens/screen_ending.c')
-rw-r--r--templates/standard_game/screens/screen_ending.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/standard_game/screens/screen_ending.c b/templates/standard_game/screens/screen_ending.c
index de16fc8f..56d37d12 100644
--- a/templates/standard_game/screens/screen_ending.c
+++ b/templates/standard_game/screens/screen_ending.c
@@ -52,7 +52,7 @@ void UpdateEndingScreen(void)
// TODO: Update ENDING screen variables here!
// Press enter to return to TITLE screen
- if (IsKeyPressed(KEY_ENTER))
+ if (IsKeyPressed(KEY_ENTER) || IsGestureDetected(GESTURE_TAP))
{
finishScreen = 1;
}
@@ -64,7 +64,7 @@ void DrawEndingScreen(void)
// TODO: Draw ENDING screen here!
DrawRectangle(0, 0, GetScreenWidth(), GetScreenHeight(), BLUE);
DrawText("ENDING SCREEN", 20, 20, 40, DARKBLUE);
- DrawText("PRESS ENTER to RETURN to TITLE SCREEN", 160, 220, 20, DARKBLUE);
+ DrawText("PRESS ENTER to RETURN to TITLE SCREEN", 120, 220, 20, DARKBLUE);
}
// Ending Screen Unload logic