From fef316932f5d5b8cb2d5574241d4baef1fd02760 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 4 Jul 2016 21:14:28 -0400 Subject: [PATCH] Moved opening bracket appropriately. --- Outputs/Speaker.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Outputs/Speaker.hpp b/Outputs/Speaker.hpp index 891676c3c..261965912 100644 --- a/Outputs/Speaker.hpp +++ b/Outputs/Speaker.hpp @@ -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); }