mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-14 16:31:30 +00:00
11 lines
194 B
C++
11 lines
194 B
C++
#include <SDL_mixer.h>
|
|
|
|
int main()
|
|
{
|
|
AEDI_EXPECT(Mix_Init(0) == 0);
|
|
AEDI_EXPECT(Mix_OpenAudio(48000, AUDIO_S16SYS, 2, 2048) == 0);
|
|
Mix_CloseAudio();
|
|
Mix_Quit();
|
|
|
|
return 0;
|
|
}
|