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.
Diff: player.hpp
- Revision:
- 6:ea8136eb6976
- Parent:
- 4:f009306756b3
- Child:
- 7:dba9221acf48
diff -r 869b3711bdb3 -r ea8136eb6976 player.hpp
--- a/player.hpp	Wed Jun 19 16:12:11 2013 +0000
+++ b/player.hpp	Thu Jun 20 03:04:36 2013 +0000
@@ -150,7 +150,8 @@
         Action* lastAction = song->getActions() + song->getNumActions();
         while (!isDone()) {
             while (nextAction < lastAction && nextAction->actIfPast(timeInSong)) {
-                fprintf(stderr, ".");
+                fputc(nextAction->code, stderr);
+                // fprintf(stderr, "%c", nextAction->code);
                 actionsDone++;
                 nextAction++;
             }