game id of console games wasn't trimmed
regression introduced by ee84567c17
This commit is contained in:
parent
02a002d55b
commit
5875eda4d0
|
@ -694,8 +694,7 @@ void loadGameSpecificSettings()
|
|||
if (settings.platform.isConsole())
|
||||
{
|
||||
reios_disk_id();
|
||||
settings.content.gameId = std::string(ip_meta.product_number, sizeof(ip_meta.product_number));
|
||||
trim_trailing_ws(settings.content.gameId);
|
||||
settings.content.gameId = trim_trailing_ws(std::string(ip_meta.product_number, sizeof(ip_meta.product_number)));
|
||||
|
||||
if (settings.content.gameId.empty())
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue