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
Diff: snake_engine/snake_engine.cpp
- Revision:
- 18:e58a1f8e72ad
- Parent:
- 17:7c8cf5f7878c
- Child:
- 20:980b37fde361
--- a/snake_engine/snake_engine.cpp Tue May 08 11:38:55 2018 +0000 +++ b/snake_engine/snake_engine.cpp Tue May 08 12:38:36 2018 +0000 @@ -2,7 +2,7 @@ snake_engine::snake_engine() { - + clision = 0; } snake_engine::~snake_engine() @@ -81,7 +81,8 @@ { Vector2D _s_poss = s.get_pos(); if (((_s_poss.x >= WIDTH -2) || (_s_poss.x <= 1)) ||((_s_poss.y >= HEIGHT -1) || (_s_poss.y <= 8)) ) { - lcd.clear(); + lcd.clear(); + clision = 1; } }