From 915f480c8c2cc86f41f873fe1fa29906053e3e17 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 10 Mar 2019 12:26:18 +1000 Subject: [PATCH] Make ma_log_level_to_string() public. --- miniaudio.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/miniaudio.h b/miniaudio.h index e836744c..1a083b35 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -1437,6 +1437,9 @@ void ma_blend_f32(float* pOut, float* pInA, float* pInB, float factor, ma_uint32 ma_uint32 ma_get_bytes_per_sample(ma_format format); static MA_INLINE ma_uint32 ma_get_bytes_per_frame(ma_format format, ma_uint32 channels) { return ma_get_bytes_per_sample(format) * channels; } +// Converts a log level to a string. +const char* ma_log_level_to_string(ma_uint32 logLevel); + ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //