Skip to content

Commit d302a99

Browse files
committed
Use named constant.
1 parent 304f403 commit d302a99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/aeolus/division.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class Division
196196

197197
List<Voice> _activeVoices; ///< Active voices on this division.
198198

199-
std::bitset<128> _keysState; ///< MIDI keys state 1 = on, 0 = off.
199+
std::bitset<TOTAL_NOTES> _keysState; ///< MIDI keys state 1 = on, 0 = off.
200200

201201
/// Tells whether this division has been triggered.
202202
/// This is used to avoid a division to be triggered multiple

0 commit comments

Comments
 (0)