This commit is contained in:
Ada 2024-03-07 15:54:48 +00:00
parent a4e44cf060
commit 556b3b8913
No known key found for this signature in database
GPG key ID: 066E56D5C9F4E50D
2 changed files with 2 additions and 2 deletions

View file

@ -257,7 +257,7 @@ Rust::Result<ArchiveBase::FormatInfo, HorizonResult> ExtSaveDataArchive::getForm
std::string ExtSaveDataArchive::getExtSaveDataPathFromBinary(const FSPath& path) const {
if(path.type != PathType::Binary) {
Helpers::panic("GetExtSaveDataPathFromBinary called without a Bianry FSPath!");
Helpers::panic("GetExtSaveDataPathFromBinary called without a Binary FSPath!");
}
// TODO: Remove punning here

View file

@ -561,7 +561,7 @@ void FSService::createExtSaveData(u32 messagePointer) {
extSaveData_sdmc.format(path, info);
break;
default:
Helpers::warn("Unhanled ExtSaveData MediaType %d", static_cast<s32>(mediaType));
Helpers::warn("Unhandled ExtSaveData MediaType %d", static_cast<s32>(mediaType));
break;
}