1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-19 19:16:34 +00:00

Corrects AY counter type.

This commit is contained in:
Thomas Harte
2018-01-06 23:16:01 -05:00
parent fc16e8eb8c
commit 57ddfcd645
+1 -1
View File
@@ -66,7 +66,7 @@ AY38910::AY38910(Concurrency::DeferringAsyncTaskQueue &task_queue) : task_queue_
}
void AY38910::get_samples(std::size_t number_of_samples, int16_t *target) {
unsigned int c = 0;
std::size_t c = 0;
while((master_divider_&7) && c < number_of_samples) {
target[c] = output_volume_;
master_divider_++;