mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
12 lines
194 B
C++
12 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;
|
||
|
}
|