Skip to content

Commit

Permalink
added not that hidden credits
Browse files Browse the repository at this point in the history
  • Loading branch information
pr3y committed May 31, 2024
1 parent cfa23c3 commit aa20ef0
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions src/tururururu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit aa20ef0

Please sign in to comment.