From 306945fe147ea7742880635e77a5c2656f6e1fdc Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sat, 6 Aug 2016 19:30:56 +0200 Subject: [PATCH] Added trace on audio device closing --- src/audio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/audio.c b/src/audio.c index 0896e4ca2..32911865c 100644 --- a/src/audio.c +++ b/src/audio.c @@ -183,6 +183,8 @@ void CloseAudioDevice(void) alcMakeContextCurrent(NULL); alcDestroyContext(context); alcCloseDevice(device); + + TraceLog(INFO, "Audio device closed successfully"); } // Check if device has been initialized successfully