Merge pull request #1 from foodornt/main

Set atomic counter to 0 when initialized
This commit is contained in:
bert hubert
2022-08-22 09:20:18 +02:00
committed by GitHub

View File

@ -23,7 +23,7 @@ int main()
cerr<<"Error opening audio: "<<audio_object_strerror(ao, res)<<endl;
}
std::atomic<int64_t> counter;
std::atomic<int64_t> counter = 0;
auto player = [&]() {
vector<int16_t> data;
int ourcounter=0;