Commit 7ead49db authored by mgambrell's avatar mgambrell

remove a stray garbage byte (0x10) from the source file which makes visual...

remove a stray garbage byte (0x10) from the source file which makes visual studio unable to open it sometimes :o
parent a04780f8
...@@ -18248,7 +18248,7 @@ ma_result ma_find_best_format__coreaudio(ma_context* pContext, AudioObjectID dev ...@@ -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. */ /* Getting here means the format is supported by miniaudio which makes this format a candidate. */
if (thisDeviceFormat.mSampleRate != desiredSampleRate) { 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. so far has an equal sample rate we can just ignore this one.
*/ */
if (bestDeviceFormatSoFar.mSampleRate == desiredSampleRate) { if (bestDeviceFormatSoFar.mSampleRate == desiredSampleRate) {
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment