Commit 915f480c authored by David Reid's avatar David Reid

Make ma_log_level_to_string() public.

parent 732172f8
......@@ -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);
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
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