| 118 | } |
| 119 | |
| 120 | void KeyWindow::KeyOff(int note) |
| 121 | { |
| 122 | int tbl[12] = { 0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12 }; |
| 123 | if(note<=0) return; |
| 124 | m_nKeyStatus[(tbl[note%12]+(note/12)*14)&0xFF] = 0; |
| 125 | } |
| 126 | |
| 127 | void KeyWindow::Reset() |
| 128 | { |
nothing calls this directly
no outgoing calls
no test coverage detected