Commit 1acb96ed authored by David Reid's avatar David Reid

Update test_0 for changes to the log callback.

parent c1c422d3
......@@ -41,10 +41,11 @@ mal_backend g_Backends[] = {
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)pDevice;
(void)logLevel;
printf("%s\n", message);
}
......
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