diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/game_list.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index f867118d9..bc4b93033 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp | |||
| @@ -438,7 +438,7 @@ void GameListWorker::AddInstalledTitlesToGameList() { | |||
| 438 | 438 | ||
| 439 | std::vector<u8> icon; | 439 | std::vector<u8> icon; |
| 440 | std::string name; | 440 | std::string name; |
| 441 | u64 program_id; | 441 | u64 program_id = 0; |
| 442 | loader->ReadProgramId(program_id); | 442 | loader->ReadProgramId(program_id); |
| 443 | 443 | ||
| 444 | const auto& control = | 444 | const auto& control = |
| @@ -509,7 +509,7 @@ void GameListWorker::AddFstEntriesToGameList(const std::string& dir_path, unsign | |||
| 509 | std::vector<u8> icon; | 509 | std::vector<u8> icon; |
| 510 | const auto res1 = loader->ReadIcon(icon); | 510 | const auto res1 = loader->ReadIcon(icon); |
| 511 | 511 | ||
| 512 | u64 program_id; | 512 | u64 program_id = 0; |
| 513 | const auto res2 = loader->ReadProgramId(program_id); | 513 | const auto res2 = loader->ReadProgramId(program_id); |
| 514 | 514 | ||
| 515 | std::string name = " "; | 515 | std::string name = " "; |