1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-29 16:55:59 +00:00

Moved opening bracket appropriately.

This commit is contained in:
Thomas Harte 2016-07-04 21:14:28 -04:00
parent 8db44eed3e
commit fef316932f

View File

@ -90,7 +90,8 @@ class Speaker {
}
void get_samples(unsigned int quantity, int16_t *target) {}
void skip_samples(unsigned int quantity) {
void skip_samples(unsigned int quantity)
{
int16_t throwaway_samples[quantity];
get_samples(quantity, throwaway_samples);
}