diff options
Diffstat (limited to 'source/game/StarSongbook.cpp')
-rw-r--r-- | source/game/StarSongbook.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/game/StarSongbook.cpp b/source/game/StarSongbook.cpp index b420802..2e00c27 100644 --- a/source/game/StarSongbook.cpp +++ b/source/game/StarSongbook.cpp @@ -503,7 +503,7 @@ List<Songbook::Note> Songbook::parseABC(String const& abc) { break; } default: - throw StarException(strf("Unrecognized note %s", head)); + throw StarException(strf("Unrecognized note %s", (char)head)); } if (note != 0) { bool accidentalActive = accidentalSpecified; @@ -556,7 +556,7 @@ List<Songbook::Note> Songbook::parseABC(String const& abc) { break; } default: - throw StarException(strf("Unrecognized note %s", head)); + throw StarException(strf("Unrecognized note %s", (char)head)); } } |