about summary refs log tree commit diff stats
path: root/src/versus.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/versus.c')
-rw-r--r--src/versus.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/versus.c b/src/versus.c
index bf6027e..fa92fe5 100644
--- a/src/versus.c
+++ b/src/versus.c
@@ -70,6 +70,7 @@ void versus_main() {
 				BeginDrawing();
 					EnableCursor();
 					ClearBackground(BLACK);
+					DrawRectangle(0, 0, 1280, 720, (Color){20, 20, 20, 255});
 					DrawText("You Lose.", 0, 0, 128, RED);
 					DrawText("Press space to return to title screen.", 0, 128, 24, WHITE);
 				EndDrawing();
@@ -84,6 +85,7 @@ void versus_main() {
 				BeginDrawing();
 					EnableCursor();
 					ClearBackground(BLACK);
+					DrawRectangle(0, 0, 1280, 720, (Color){20, 20, 20, 255});
 					DrawText("You Win!", 0, 0, 128, BLUE);
 					DrawText("Press space to return to title screen.", 0, 128, 24, WHITE);
 				EndDrawing();