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
commit 7b8e846d0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);
}
}