Eliminado sdl_mixer

This commit is contained in:
2022-10-21 16:48:21 +02:00
parent fd1fc0b582
commit 58f9841f71
4 changed files with 73 additions and 49 deletions

View File

@@ -74,6 +74,9 @@ bool init()
// Indicador de inicialización
bool success = true;
// Inicializa JailAudio
JA_Init(44100, AUDIO_S16, 2);
// Inicializa SDL
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK | SDL_INIT_AUDIO) < 0)
{
@@ -89,11 +92,11 @@ bool init()
}
// Inicializa SDL_mixer
if (Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 2048) < 0)
{
printf("SDL_mixer could not initialize! SDL_mixer Error: %s\n", Mix_GetError());
success = false;
}
//if (Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 2048) < 0)
//{
// printf("SDL_mixer could not initialize! SDL_mixer Error: %s\n", Mix_GetError());
// success = false;
//}
// Crea la ventana
gWindow = SDL_CreateWindow("Super Popping (Like Loc) in Jailers World", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, VIEW_WIDTH, VIEW_HEIGHT, SDL_WINDOW_SHOWN);