diff options
| author | JosJuice <josjuice@gmail.com> | 2022-01-20 21:14:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-20 21:14:41 +0100 |
| commit | 7b8e846d0ab1a95c4070c3d89e38180895e536c6 (patch) | |
| tree | 8ac4fee6c918e4586a333d808173d4b20ee24c5b /Source/Core/DiscIO/DiscUtils.cpp | |
| parent | 73bcf9c24bff56e562f120d2c1c02fb734e17dfd (diff) | |
| parent | fd04f4f32dcb322e3efa51400ed8638a8beb288f (diff) | |
Merge pull request #10367 from Pokechu22/fmt-8.1.1
Update to fmt 8.1.1
Diffstat (limited to 'Source/Core/DiscIO/DiscUtils.cpp')
| -rw-r--r-- | Source/Core/DiscIO/DiscUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/DiscUtils.cpp b/Source/Core/DiscIO/DiscUtils.cpp index 002ce066db..cdfcb015c4 100644 --- a/Source/Core/DiscIO/DiscUtils.cpp +++ b/Source/Core/DiscIO/DiscUtils.cpp @@ -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); } } |
