update SDL_mixer to SDL3_mixer 3.2.0

This commit is contained in:
Sven Balzer
2026-04-02 16:52:07 +02:00
parent 05b19704f8
commit 8a5caf5c0d
1202 changed files with 366156 additions and 152445 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <SDL3/SDL.h>
#include <SDL3/SDL_main.h>
#include <SDL3_mixer/SDL_mixer.h>
int main(int argc, char *argv[])
{
if (!SDL_Init(0)) {
SDL_Log("SDL_Init: could not initialize SDL: %s\n", SDL_GetError());
return 1;
}
if (MIX_Init() == 0) {
SDL_Log("MIX_Init: no sound/music loaders supported (%s)\n", SDL_GetError());
}
MIX_Quit();
SDL_Quit();
return 0;
}