mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-08-27 20:55:41 +00:00
FS: Warn on unimplemented functions instead of panic
This commit is contained in:
parent
67a7be3138
commit
25a2d433c9
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue