From 7ead49dba3e123372729a1f38be0f6e7ee4d86e5 Mon Sep 17 00:00:00 2001 From: mgambrell Date: Thu, 3 Oct 2019 17:19:44 -0400 Subject: [PATCH] remove a stray garbage byte (0x10) from the source file which makes visual studio unable to open it sometimes :o --- miniaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index b8e39b4d..5a3d50e9 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -18248,7 +18248,7 @@ ma_result ma_find_best_format__coreaudio(ma_context* pContext, AudioObjectID dev /* Getting here means the format is supported by miniaudio which makes this format a candidate. */ if (thisDeviceFormat.mSampleRate != desiredSampleRate) { /* - The sample rate does not match, but this format could still be usable, although it's a very low priority. If the best format + The sample rate does not match, but this format could still be usable, although it's a very low priority. If the best format so far has an equal sample rate we can just ignore this one. */ if (bestDeviceFormatSoFar.mSampleRate == desiredSampleRate) {