mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-01-26 03:03:06 -03:00
Fix building against fmt 11.1.0 (#1474)
This commit is contained in:
parent
eab1b24320
commit
4ac65159ef
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ bool gameProfile_loadEnumOption(IniParser& iniParser, const char* optionName, T&
|
|||
}
|
||||
|
||||
// test enum name
|
||||
if(boost::iequals(fmt::format("{}", v), *option_value))
|
||||
if(boost::iequals(fmt::format("{}", fmt::underlying(v)), *option_value))
|
||||
{
|
||||
option = v;
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue