mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Update test_0 for changes to the log callback.
This commit is contained in:
+2
-1
@@ -41,10 +41,11 @@ mal_backend g_Backends[] = {
|
|||||||
mal_backend_null
|
mal_backend_null
|
||||||
};
|
};
|
||||||
|
|
||||||
void on_log(mal_context* pContext, mal_device* pDevice, const char* message)
|
void on_log(mal_context* pContext, mal_device* pDevice, mal_uint32 logLevel, const char* message)
|
||||||
{
|
{
|
||||||
(void)pContext;
|
(void)pContext;
|
||||||
(void)pDevice;
|
(void)pDevice;
|
||||||
|
(void)logLevel;
|
||||||
printf("%s\n", message);
|
printf("%s\n", message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user