Remove every trailing whitespace from the project (but externals).
This commit is contained in:
parent
fb597b6d68
commit
b1503b2020
65 changed files with 212 additions and 212 deletions
|
@ -254,7 +254,7 @@ ResultVal<ArchiveHandle> OpenArchive(ArchiveIdCode id_code, FileSys::Path& archi
|
|||
|
||||
CASCADE_RESULT(std::unique_ptr<ArchiveBackend> res, itr->second->Open(archive_path));
|
||||
|
||||
// This should never even happen in the first place with 64-bit handles,
|
||||
// This should never even happen in the first place with 64-bit handles,
|
||||
while (handle_map.count(next_handle) != 0) {
|
||||
++next_handle;
|
||||
}
|
||||
|
@ -488,7 +488,7 @@ void ArchiveInit() {
|
|||
RegisterArchiveType(std::move(sdmc_factory), ArchiveIdCode::SDMC);
|
||||
else
|
||||
LOG_ERROR(Service_FS, "Can't instantiate SDMC archive with path %s", sdmc_directory.c_str());
|
||||
|
||||
|
||||
// Create the SaveData archive
|
||||
auto savedata_factory = Common::make_unique<FileSys::ArchiveFactory_SaveData>(sdmc_directory);
|
||||
RegisterArchiveType(std::move(savedata_factory), ArchiveIdCode::SaveData);
|
||||
|
@ -503,7 +503,7 @@ void ArchiveInit() {
|
|||
if (sharedextsavedata_factory->Initialize())
|
||||
RegisterArchiveType(std::move(sharedextsavedata_factory), ArchiveIdCode::SharedExtSaveData);
|
||||
else
|
||||
LOG_ERROR(Service_FS, "Can't instantiate SharedExtSaveData archive with path %s",
|
||||
LOG_ERROR(Service_FS, "Can't instantiate SharedExtSaveData archive with path %s",
|
||||
sharedextsavedata_factory->GetMountPoint().c_str());
|
||||
|
||||
// Create the SaveDataCheck archive, basically a small variation of the RomFS archive
|
||||
|
|
|
@ -434,7 +434,7 @@ static void IsSdmcWriteable(Service::Interface* self) {
|
|||
}
|
||||
|
||||
/**
|
||||
* FS_User::FormatSaveData service function,
|
||||
* FS_User::FormatSaveData service function,
|
||||
* formats the SaveData specified by the input path.
|
||||
* Inputs:
|
||||
* 0 : 0x084C0242
|
||||
|
@ -520,7 +520,7 @@ static void CreateExtSaveData(Service::Interface* self) {
|
|||
LOG_WARNING(Service_FS, "(STUBBED) savedata_high=%08X savedata_low=%08X cmd_buff[3]=%08X "
|
||||
"cmd_buff[4]=%08X cmd_buff[5]=%08X cmd_buff[6]=%08X cmd_buff[7]=%08X cmd_buff[8]=%08X "
|
||||
"cmd_buff[9]=%08X cmd_buff[10]=%08X cmd_buff[11]=%08X", save_high, save_low,
|
||||
cmd_buff[3], cmd_buff[4], cmd_buff[5], cmd_buff[6], cmd_buff[7], cmd_buff[8], cmd_buff[9],
|
||||
cmd_buff[3], cmd_buff[4], cmd_buff[5], cmd_buff[6], cmd_buff[7], cmd_buff[8], cmd_buff[9],
|
||||
cmd_buff[10], cmd_buff[11]);
|
||||
|
||||
cmd_buff[1] = CreateExtSaveData(media_type, save_high, save_low).raw;
|
||||
|
@ -544,7 +544,7 @@ static void DeleteExtSaveData(Service::Interface* self) {
|
|||
u32 save_high = cmd_buff[3];
|
||||
u32 unknown = cmd_buff[4]; // TODO(Subv): Figure out what this is
|
||||
|
||||
LOG_WARNING(Service_FS, "(STUBBED) save_low=%08X save_high=%08X media_type=%08X unknown=%08X",
|
||||
LOG_WARNING(Service_FS, "(STUBBED) save_low=%08X save_high=%08X media_type=%08X unknown=%08X",
|
||||
save_low, save_high, cmd_buff[1] & 0xFF, unknown);
|
||||
|
||||
cmd_buff[1] = DeleteExtSaveData(media_type, save_high, save_low).raw;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue