commit f2c06647e363b66b0d8c11eb68ac5d2c47106939
parent 7ddcca67a0858a8d9000a8b53ee0743e1d0a91c0
Author: Ricard Wanderlof <ricard2013@butoba.net>
Date: Wed, 15 Sep 2021 20:26:11 +0200
NotePool: Add LATCHED mode to getStatus
LATCHED was missing from getStatus, so add it.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/Containers/NotePool.cpp b/src/Containers/NotePool.cpp
@@ -382,6 +382,7 @@ const char *getStatus(int status_bits)
case 1: return "PLAY";
case 2: return "SUST";
case 3: return "RELA";
+ case 4: return "LTCH";
default: return "INVD";
}
}