Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of el17dg by
Diff: tutorial/tutorial.cpp
- Revision:
- 31:becb8f6bf7b7
- Parent:
- 30:d454d0cb72bc
- Child:
- 39:ca77a6d574e6
--- a/tutorial/tutorial.cpp	Tue Apr 16 21:16:33 2019 +0000
+++ b/tutorial/tutorial.cpp	Tue Apr 23 18:18:57 2019 +0000
@@ -27,6 +27,10 @@
     else if (current_page == 4){ tutorialPage4();}
     else if (current_page == 5){ tutorialPage5();}
     else if (current_page == 6){ tutorialPage6();}
+    else if (current_page == 7){ tutorialPage7();}
+    else if (current_page == 8){ tutorialPage8();}
+    else if (current_page == 9){ tutorialPage9();}
+    else if (current_page == 10){ tutorialPage10();}
     
     bool back_to_menu = false;    
     if (gamepad.check_event(gamepad.B_PRESSED)){
@@ -103,9 +107,9 @@
 }
 
 void Tutorial::tutorialPage5(){
-    lcd.printString("Evade enemy ",0,1);
-    lcd.printString("shots and",0,2);
-    lcd.printString("don't let ",0,3);
+    lcd.printString("Evade or block",0,1);
+    lcd.printString("enemy shots",0,2);
+    lcd.printString("and don't let ",0,3);
     lcd.printString("them pass.",0,4);
 }
 
    