frogger game revision

Dependencies:   4DGL-uLCD-SE MMA8452 SDFileSystem mbed wave_player

Dependents:   C_Assembly

Fork of ECE2035_FroggerGame_SUM2015 by ECE 2035

Revision:
9:47f07aa85f1a
Parent:
7:b9b305de0fbb
--- a/robot/robot.cpp	Wed Jul 08 15:45:22 2015 +0000
+++ b/robot/robot.cpp	Mon Feb 01 06:43:06 2016 +0000
@@ -23,8 +23,8 @@
     // MAKE
     uLCD.filled_circle(frog_x, frog_y, 2, 0xCC0066);
     uLCD.filled_rectangle(frog_x-2,frog_y+1,frog_x+2,frog_y+3,0x33FF66);
-    uLCD.line(frog_x-1, frog_y+4,frog_x-1, frog_y+5, 0xFF0000);//legs
-    uLCD.line(frog_x+2, frog_y+4,frog_x+2, frog_y+5, 0xFF0000);
+    //uLCD.line(frog_x-1, frog_y+4,frog_x-1, frog_y+5, 0xFF0000);//legs
+    //uLCD.line(frog_x+2, frog_y+4,frog_x+2, frog_y+5, 0xFF0000);
     uLCD.line(frog_x+2, frog_y+1,frog_x+4, frog_y+1, 0xFF0000);//hands
     uLCD.line(frog_x-2, frog_y+1,frog_x-4, frog_y+1, 0xFF0000); 
 }