Commit b65a1171 authored by Clownacy's avatar Clownacy

Fix function not returning anything

MSVC 6 was printing a warning about this.
parent 7bb96d8a
......@@ -8811,6 +8811,8 @@ MA_API ma_result ma_log_postv(ma_log* pLog, ma_uint32 level, const char* pFormat
ma_free(pFormattedMessage, &pLog->allocationCallbacks);
return result;
} else {
return MA_OUT_OF_MEMORY;
}
} else {
return MA_INVALID_OPERATION;
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