warn user if we cannot play

This commit is contained in:
tildearrow 2023-09-09 17:12:49 -05:00
parent c6c05582bd
commit a7ded3325a
3 changed files with 16 additions and 8 deletions

View file

@ -708,11 +708,11 @@ class DivEngine {
// find song loop position
void walkSong(int& loopOrder, int& loopRow, int& loopEnd);
// play
void play();
// play (returns whether successful)
bool play();
// play to row
void playToRow(int row);
// play to row (returns whether successful)
bool playToRow(int row);
// play by one row
void stepOne(int row);