From d7bef996e622de361e5980539c8d20765ce2553d Mon Sep 17 00:00:00 2001 From: Tamir Atias Date: Sat, 14 Apr 2012 21:34:03 +0300 Subject: [PATCH] [Fix] OpenAL was not shut down. --- src/Main/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main/main.cpp b/src/Main/main.cpp index a2f28e0..2c22d39 100644 --- a/src/Main/main.cpp +++ b/src/Main/main.cpp @@ -20,6 +20,7 @@ #include "../System/Debug.h" void Destroy(void) { + Mix_CloseAudio(); DestroyInput(); SDL_FreeSurface(screen); SDL_Quit();