summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-20 10:21:50 +0200
committerLioncash <mathew1800@gmail.com>2018-08-20 10:23:05 +0200
commitffd60ee4768e7baba187bf9c3462e6db9ec01b32 (patch)
treec287393ca3e0e7a0aa66e16a4561714ba6f8eee7
parentMerge pull request #1089 from Subv/neg_bits (diff)
downloadyuzu-ffd60ee4768e7baba187bf9c3462e6db9ec01b32.tar
yuzu-ffd60ee4768e7baba187bf9c3462e6db9ec01b32.tar.gz
yuzu-ffd60ee4768e7baba187bf9c3462e6db9ec01b32.tar.bz2
yuzu-ffd60ee4768e7baba187bf9c3462e6db9ec01b32.tar.lz
yuzu-ffd60ee4768e7baba187bf9c3462e6db9ec01b32.tar.xz
yuzu-ffd60ee4768e7baba187bf9c3462e6db9ec01b32.tar.zst
yuzu-ffd60ee4768e7baba187bf9c3462e6db9ec01b32.zip
-rw-r--r--src/yuzu/game_list.cpp4
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() {
std::vector<u8> icon;
std::string name;
- u64 program_id;
+ u64 program_id = 0;
loader->ReadProgramId(program_id);
const auto& control =
@@ -509,7 +509,7 @@ void GameListWorker::AddFstEntriesToGameList(const std::string& dir_path, unsign
std::vector<u8> icon;
const auto res1 = loader->ReadIcon(icon);
- u64 program_id;
+ u64 program_id = 0;
const auto res2 = loader->ReadProgramId(program_id);
std::string name = " ";