Big Mouth Billy Bass automation library

Dependents:   BillyBass_with_SD

Revision:
6:ea8136eb6976
Parent:
4:f009306756b3
Child:
7:dba9221acf48
--- 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++;
             }