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 FATFileSystem
Diff: CaMove/CaMove.cpp
- Revision:
- 20:01efa2bce75d
- Parent:
- 19:065207c07c3c
- Child:
- 21:f3b0ce18b44f
--- a/CaMove/CaMove.cpp Wed May 08 02:45:11 2019 +0000 +++ b/CaMove/CaMove.cpp Wed May 08 15:48:44 2019 +0000 @@ -205,7 +205,7 @@ _cv = y; } -void CaMove::chase(Bitmap &lcd, int chaser) { +void CaMove::chase(Bitmap &lcd, int girl) { if (enabled) { if (_cv < _v) { _cv = _cv + increment; @@ -217,7 +217,7 @@ } else if (_ch > _h) { _ch = _ch - increment; } - this->render_chaser(lcd,chaser); + this->render_chaser(lcd,girl); } }