FS: Warn on unimplemented functions instead of panic

This commit is contained in:
wheremyfoodat 2025-08-07 15:59:57 +03:00
commit 25a2d433c9

View file

@ -194,7 +194,11 @@ void FSService::handleSyncRequest(u32 messagePointer) {
case FSCommands::SetThisSaveDataSecureValue: setThisSaveDataSecureValue(messagePointer); break;
case FSCommands::AbnegateAccessRight: abnegateAccessRight(messagePointer); break;
case FSCommands::TheGameboyVCFunction: theGameboyVCFunction(messagePointer); break;
default: Helpers::panic("FS service requested. Command: %08X\n", command);
default:
Helpers::warn("Unimplemented FS service requested. Command: %08X\n", command);
mem.write32(messagePointer + 4, Result::Success);
break;
}
}