mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-14 00:58:51 +02:00
Move to C++20 for non-MSVC compilers
This commit is contained in:
@ -195,7 +195,7 @@ std::vector<std::string> GetCDDevices()
|
||||
{
|
||||
for (unsigned int j = checklist[i].num_min; j <= checklist[i].num_max; ++j)
|
||||
{
|
||||
std::string drive = fmt::format(checklist[i].format, j);
|
||||
std::string drive = fmt::format(fmt::runtime(checklist[i].format), j);
|
||||
if (IsCDROM(drive))
|
||||
{
|
||||
drives.push_back(std::move(drive));
|
||||
|
Reference in New Issue
Block a user