From aa20ef093830010c1df0842016fc6a1cdbc16b73 Mon Sep 17 00:00:00 2001 From: pr3y Date: Fri, 31 May 2024 19:06:02 -0300 Subject: [PATCH] added not that hidden credits --- src/tururururu.cpp | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/src/tururururu.cpp b/src/tururururu.cpp index 532c502b..c570f66b 100644 --- a/src/tururururu.cpp +++ b/src/tururururu.cpp @@ -162,21 +162,34 @@ void shark_loop() { if(score>=30 && score<40) delay(30); if(score>=40 && score<50) delay(25); if(score>=50) { delay(15); } - /* + if(score==99) { - displaySuccess("Is this fun??"); + displaySuccess("So..."); while(!checkSelPress()) { yield(); } while(checkSelPress()) { yield(); } //debounce - displaySuccess("there is more.."); + displaySuccess("you just found"); while(!checkSelPress()) { yield(); } while(checkSelPress()) { yield(); } //debounce - displayInfo("in the /Oc34N"); + displayInfo("hidden credits!"); while(!checkSelPress()) { yield(); } while(checkSelPress()) { yield(); } //debounce + displayInfo("main devs:"); + while(!checkSelPress()) { yield(); } + while(checkSelPress()) { yield(); } //debounce + options = { + {"bmorcelli", [=]() { displayRedStripe("github.com/bmorcelli");delay(2000); }}, + {"pr3y", [=]() { displayRedStripe("github.com/pr3y");delay(2000); }}, + {"IncursioHack", [=]() { displayRedStripe("github.com/IncursioHack");delay(2000); }}, + }; + + delay(200); + loopOptions(options); + delay(200); + initSprites(); score++; } - */ + if(checkEscPress()) { returnToMenu=true; goto Exit;