Skip to content

Commit

Permalink
Note 'g' was missing.
Browse files Browse the repository at this point in the history
How embarrassing!
  • Loading branch information
matthewryanscott committed Sep 21, 2016
1 parent 0a7e9ab commit a34324a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions sunvox/dll.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@


class NOTECMD(IntEnum):
(C0, d0, D0, e0, E0, F0, G0, a0, A0, b0, B0,
C1, d1, D1, e1, E1, F1, G1, a1, A1, b1, B1,
C2, d2, D2, e2, E2, F2, G2, a2, A2, b2, B2,
C3, d3, D3, e3, E3, F3, G3, a3, A3, b3, B3,
C4, d4, D4, e4, E4, F4, G4, a4, A4, b4, B4,
C5, d5, D5, e5, E5, F5, G5, a5, A5, b5, B5,
C6, d6, D6, e6, E6, F6, G6, a6, A6, b6, B6,
C7, d7, D7, e7, E7, F7, G7, a7, A7, b7, B7,
C8, d8, D8, e8, E8, F8, G8, a8, A8, b8, B8,
C9, d9, D9, e9, E9, F9, G9, a9, A9, b9, B9) = range(1, 111)
(C0, d0, D0, e0, E0, F0, g0, G0, a0, A0, b0, B0,
C1, d1, D1, e1, E1, F1, g1, G1, a1, A1, b1, B1,
C2, d2, D2, e2, E2, F2, g2, G2, a2, A2, b2, B2,
C3, d3, D3, e3, E3, F3, g3, G3, a3, A3, b3, B3,
C4, d4, D4, e4, E4, F4, g4, G4, a4, A4, b4, B4,
C5, d5, D5, e5, E5, F5, g5, G5, a5, A5, b5, B5,
C6, d6, D6, e6, E6, F6, g6, G6, a6, A6, b6, B6,
C7, d7, D7, e7, E7, F7, g7, G7, a7, A7, b7, B7,
C8, d8, D8, e8, E8, F8, g8, G8, a8, A8, b8, B8,
C9, d9, D9, e9, E9, F9, g9, G9, a9, A9, b9, B9) = range(1, 121)
EMPTY = 0
NOTE_OFF = 128
ALL_NOTES_OFF = 129 # notes of all synths off
Expand Down

0 comments on commit a34324a

Please sign in to comment.