ELEC2645 (2017/18) / Mbed 2 deprecated el15ww

Dependencies:   mbed

Revision:
13:4026781772cb
Parent:
0:d557f30e3a95
Child:
15:47ea86f1ed70
--- a/Fruit/Fruit.cpp	Fri May 04 13:25:18 2018 +0000
+++ b/Fruit/Fruit.cpp	Sun May 06 12:44:41 2018 +0000
@@ -22,8 +22,8 @@
 
 void Fruit::reborn(){//randomise the location of the fruit after it is ate by the sanke
     srand(time(NULL));
-    _posx = rand() % 80;
-    _posy = rand() % 40;
+    _posx = rand() % (WIDTH-5)+10;
+    _posy = rand() % (HEIGHT-10)+5;
     
 }