mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Add some logging and update mini_al.
This commit is contained in:
@ -425,6 +425,11 @@ void InitAudioDevice(void)
|
||||
return;
|
||||
}
|
||||
|
||||
TraceLog(LOG_INFO, "Audio device initialized successfully");
|
||||
TraceLog(LOG_INFO, "Audio backend: %s", mal_get_backend_name(context.backend));
|
||||
TraceLog(LOG_INFO, "Audio format: %s", mal_get_format_name(device.format));
|
||||
TraceLog(LOG_INFO, "Audio channels: %d", device.channels);
|
||||
TraceLog(LOG_INFO, "Audio sample rate: %d", device.sampleRate);
|
||||
|
||||
isAudioInitialized = MAL_TRUE;
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user