Help to set up project with SDL2 and ps2sdk

Hi,
I am trying to set a project with ps2sdk and the SDL2 port and having problems

could not init the audio_mixer and now when try to load a .BMP the src param is invalid.

void setUp() {
    std::cout << "Set Up"  << std::endl;
    // Initialize SDL Video
    if (SDL_Init(SDL_INIT_VIDEO) != 0) {
        std::cerr << "Error initializing SDL Video: " << SDL_GetError() << std::endl;
        exit(1);
    }
    std::cout << "Init SDL Video" << std::endl;

    // Initialize SDL Timer
    if (SDL_Init(SDL_INIT_TIMER) != 0) {
        std::cerr << "Error initializing SDL Timer: " << SDL_GetError() << std::endl;
        exit(1);
    }
    std::cout << "Init SDL Timer" << std::endl;
    
    std::cout << "Init SDL"  << std::endl;
    window = SDL_CreateWindow(
        "PS2", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
        640,
        448,
        SDL_WINDOW_BORDERLESS
    );

    if (!window) {
        std::cerr << "Error initializing SDL Window: " << SDL_GetError() << std::endl;
        exit(1);
    }
    std::cout << "Init Window" << std::endl;

    renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
    if (!renderer) {
        std::cerr << "Error initializing SDL Renderer: " << SDL_GetError() << std::endl;
        exit(1);
    }
    std::cout << "Init Render" << std::endl;
}
void Splash::load() {
    SDL_Surface* logoSurface = SDL_LoadBMP("logo.bmp");
    if (!logoSurface) {
        std::cerr << "Failed to load logo: " << IMG_GetError() << std::endl;
        exit(1);
    }
    logoTexture = SDL_CreateTextureFromSurface(renderer, logoSurface);
    SDL_FreeSurface(logoSurface);
    std::cout << "End, load" << std::endl;
}
EE_BIN = test.elf
EE_OBJS = src/Main.o src/Splash.o 
EE_LIBS := -L${PS2DEV}/gsKit/lib -L${PS2SDK}/ports/lib -lSDL2main -lSDL2 -lSDL2_image -lSDL2_ttf -lSDL2_mixer -lpatches -lgskit -ldmakit -lps2_drivers -lmodplug -laudsrv -lpad -lc 
EE_INCS := -I${PS2SDK}/ports/include 
EE_CFLAGS += -DPS2 -Dmain=SDL_main -DHAVE_SDL2 -static

all: $(EE_BIN) 

clean:
	rm -f $(EE_BIN) $(EE_OBJS)

run: $(EE_BIN)
	ps2client -h $(PS2_IP) execee host:$(EE_BIN)

reset:
	ps2client -h $(PS2_IP) reset

include $(PS2SDK)/samples/Makefile.pref
include $(PS2SDK)/samples/Makefile.eeglobal_cpp

and the error using PCSX2:
[ 5.4189] open name cdrom0:logo.bmp flag 1 data 41378
[ 5.4191] open fd = 2
[ 5.4231] nulldev callFailed to load logo: Parameter ‘src’ is invalid

thanks in advance.