diff --git a/src/core/fs/archive_ext_save_data.cpp b/src/core/fs/archive_ext_save_data.cpp index c872351d..1f23f15d 100644 --- a/src/core/fs/archive_ext_save_data.cpp +++ b/src/core/fs/archive_ext_save_data.cpp @@ -257,7 +257,7 @@ Rust::Result 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 diff --git a/src/core/services/fs.cpp b/src/core/services/fs.cpp index 69155093..9cde56a3 100644 --- a/src/core/services/fs.cpp +++ b/src/core/services/fs.cpp @@ -561,7 +561,7 @@ void FSService::createExtSaveData(u32 messagePointer) { extSaveData_sdmc.format(path, info); break; default: - Helpers::warn("Unhanled ExtSaveData MediaType %d", static_cast(mediaType)); + Helpers::warn("Unhandled ExtSaveData MediaType %d", static_cast(mediaType)); break; }