From f7e4fe9f4c198045f54f83ffe379fd7a20d8dd76 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Patrick=20Sch=C3=B6nberger?= Date: Sat, 26 Sep 2020 12:29:23 +0200 Subject: [PATCH] movement done --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index b762f69..5493148 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -285,11 +285,15 @@ void intro() { update_play(false); if (x == 5) { print_text(4, 4, "Jump with up.", 30); + print_text(4, 6, "Stand on x.", 30); progress++; } break; case 2: update_play(); + if (x == 8) { + print_text(4, 8, "Collect ? for ???.", 30); + } break; } } -- 2.50.1