Libretro buildfix

This commit is contained in:
Henrik Rydgård 2025-03-30 11:28:14 +02:00
parent b32c0b461a
commit d3600ca127

View file

@ -1474,8 +1474,8 @@ bool retro_load_game(const struct retro_game_info *game)
coreParam.cpuCore = (CPUCore)g_Config.iCpuCore;
std::string error_string;
if (!PSP_InitStart(coreParam, &error_string))
{
if (!PSP_InitStart(coreParam)) {
// Can't really fail, the errors happen later during InitUpdate
ERROR_LOG(Log::Boot, "%s", error_string.c_str());
return false;
}