mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-28 18:33:14 +00:00
Merge pull request #6179 from JosJuice/extract-forbidden-characters
Avoid forbidden characters when extracting disc partitions
This commit is contained in:
commit
356896d8bc
@ -33,7 +33,7 @@ std::string DirectoryNameForPartitionType(u32 partition_type)
|
|||||||
static_cast<char>((partition_type >> 8) & 0xFF),
|
static_cast<char>((partition_type >> 8) & 0xFF),
|
||||||
static_cast<char>(partition_type & 0xFF)};
|
static_cast<char>(partition_type & 0xFF)};
|
||||||
if (std::all_of(type_as_game_id.cbegin(), type_as_game_id.cend(),
|
if (std::all_of(type_as_game_id.cbegin(), type_as_game_id.cend(),
|
||||||
[](char c) { return std::isprint(c, std::locale::classic()); }))
|
[](char c) { return std::isalnum(c, std::locale::classic()); }))
|
||||||
{
|
{
|
||||||
return "P-" + type_as_game_id;
|
return "P-" + type_as_game_id;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user