ELEC2645 (2018/19) / Mbed 2 deprecated el17aio

Dependencies:   mbed

Revision:
47:5ae8668af63f
Parent:
45:fe5fc85a5c73
Child:
51:2231e2e141b9
--- a/Menu/Menu.h	Thu May 09 04:19:49 2019 +0000
+++ b/Menu/Menu.h	Thu May 09 04:27:07 2019 +0000
@@ -20,17 +20,17 @@
     ~Menu();
     
     /** A mutator method that initializes the cursor used to select options in the menu
-    *@param ycursor: the yposition of the rectangle used as a cursor
+    *@param ycursor the yposition of the rectangle used as a cursor
     */
     void init(int ycursor);
     /** Displays the title screen and changes the displayed ship based on ship selected
-    *@param &lcd: pointer to the N5110 library used for the lcd display
-    *@param shipUsed: a variable of enum SHIP which contains the ship currently being used 
+    *@param &lcd pointer to the N5110 library used for the lcd display
+    *@param shipUsed a variable of enum SHIP which contains the ship currently being used 
     */
     void title(N5110 &lcd, SHIP shipUsed);
     /** A mutator method that updates the x and y cursor values based on joystick movemnt
-    *@param d: the current direction of the joystick
-    *@param joystick: a 2D vector of the x and y joystick value
+    *@param d the current direction of the joystick
+    *@param joystick a 2D vector of the x and y joystick value
     */
     void update(Direction d,Vector2D joystick);
     /** Accessor method to get tthe current ycursor position used to select options
@@ -44,7 +44,7 @@
     */
     int get_xcursor();
     /** Displays the ship in the menu home screen
-    *@param &lcd: pointer to the N5110 library used for the lcd display
+    *@param &lcd pointer to the N5110 library used for the lcd display
     */
     void disp_ships(N5110 &lcd);
     //void Menu::scroll(N5110 &lcd, Direction d);