mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Merge pull request #368 from raven02/patch-7
Gameviewer : fix wrong category
This commit is contained in:
commit
336442eeba
1 changed files with 2 additions and 2 deletions
|
@ -158,9 +158,9 @@ void GameViewer::LoadPSF()
|
|||
if(game.serial.length() == 9)
|
||||
game.serial = game.serial.substr(0, 4) + "-" + game.serial.substr(4, 5);
|
||||
|
||||
if (game.category.find("HG"))
|
||||
if (game.category.substr(0, 2) == "HG")
|
||||
game.category = "HDD Game";
|
||||
else if (game.category.find("DG"))
|
||||
else if (game.category.substr(0, 2) == "DG")
|
||||
game.category = "Disc Game";
|
||||
|
||||
m_game_data.push_back(game);
|
||||
|
|
Loading…
Add table
Reference in a new issue