summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 8a4f8a7..fb6af00 100644
--- a/src/main.c
+++ b/src/main.c
@@ -64,15 +64,27 @@ main([[maybe_unused]] int argc, [[maybe_unused]] char **argv)
int y = -16;
if (stage == 1) {
(void)LZY_DrawText(48, y += 32, "WALKING is AUTOMATIC");
+#ifdef FXCG50
(void)LZY_DrawText(48, y += 32, "press SHIFT to jump");
+#else
+ (void)LZY_DrawText(48, y += 32, "press SPACE to jump");
+#endif
(void)LZY_DrawText(48, y += 32, "hold UP to jump HIGHER");
(void)LZY_DrawText(48, y += 32, "hold DOWN to jump LOWER");
} else {
(void)LZY_DrawText(48, y += 32, "HYPERULTRA");
(void)LZY_DrawText(48, y += 32, "a game made by KDX.re");
- (void)LZY_DrawText(48, y += 32, "powered by GINT and SDL");
+#ifdef FXCG50
+ (void)LZY_DrawText(48, y += 32, "powered by GINT");
+#else
+ (void)LZY_DrawText(48, y += 32, "powered by SDL");
+#endif
}
+#ifdef FXCG50
(void)LZY_DrawText(48, y += 48, "hold SHIFT to continue");
+#else
+ (void)LZY_DrawText(48, y += 48, "hold SPACE to continue");
+#endif
if (hold)
(void)LZY_FillRect(0, DISPLAY_HEIGHT - 24, hold * 8, 24);
background_draw();