| 440 | } |
| 441 | |
| 442 | void BufferShuffler::OnGridButton(int x, int y, float velocity, IGridController* grid) |
| 443 | { |
| 444 | if (velocity > 0) |
| 445 | { |
| 446 | int index = x + y * mGridControlTarget->GetGridController()->NumCols(); |
| 447 | if (index >= 0 && index < GetNumSlices()) |
| 448 | PlayOneShot(index); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | void BufferShuffler::UpdateGridControllerLights(bool force) |
| 453 | { |
nothing calls this directly
no test coverage detected