diff options
Diffstat (limited to 'tfmx')
-rw-r--r-- | tfmx/mxtxplayer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tfmx/mxtxplayer.cpp b/tfmx/mxtxplayer.cpp index 1ceebf8167..0790d7ac70 100644 --- a/tfmx/mxtxplayer.cpp +++ b/tfmx/mxtxplayer.cpp @@ -74,7 +74,7 @@ void modcmdmain(const int argc, const char *const argv[]) { param = atoi(argv[++i]); debug( "play Song %02X", param); - player->doSong(param); + player->playSong(param); //player->noteOn(player->_channelCtx[0], 43, 64, 0); @@ -88,7 +88,7 @@ void modcmdmain(const int argc, const char *const argv[]) { } if (!hasCmd) { - player->doSong(0); + player->playSong(0); player->playNote(0x18, 0x03, 0x0F52, 120, 1); } |