| 211 | } |
| 212 | |
| 213 | void setContinue(bool cont) { |
| 214 | if (this->cont == cont) |
| 215 | return; |
| 216 | this->cont = cont; |
| 217 | if (cont) { |
| 218 | // Continue |
| 219 | midi::Message m; |
| 220 | m.setSize(1); |
| 221 | m.setStatus(0xf); |
| 222 | m.setChannel(0xb); |
| 223 | m.setFrame(frame); |
| 224 | onMessage(m); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | void setStop(bool stop) { |
| 229 | if (this->stop == stop) |
no test coverage detected