Merge pull request #10367 from Pokechu22/fmt-8.1.1

Update to fmt 8.1.1
This commit is contained in:
JosJuice
2022-01-20 21:14:41 +01:00
committed by GitHub
80 changed files with 10311 additions and 6848 deletions

View File

@ -45,7 +45,7 @@ std::string NameForPartitionType(u32 partition_type, bool include_prefix)
return include_prefix ? "P-" + type_as_game_id : type_as_game_id;
}
return fmt::format(include_prefix ? "P{}" : "{}", partition_type);
return fmt::format("{}{}", include_prefix ? "P" : "", partition_type);
}
}