diff options
| author | Matthew Parlane <parlane@gmail.com> | 2016-05-11 08:40:00 +1200 |
|---|---|---|
| committer | Matthew Parlane <parlane@gmail.com> | 2016-05-11 08:40:00 +1200 |
| commit | 3f012df6d549d2dec985eb87c7596f5b70a66748 (patch) | |
| tree | bbd241929f8835324323850b42b748e10c548b81 /Source | |
| parent | bb6a04dc8ee7454d3f85b53f009cb9d9afa6ccda (diff) | |
| parent | 0969581baba9963d45e5c967d86c60645c5412e0 (diff) | |
Merge pull request #3615 from rukai/qtCrash
DolphinQt2: Fix crash related to loading gameini
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt2/GameList/GameFile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/DolphinQt2/GameList/GameFile.h b/Source/Core/DolphinQt2/GameList/GameFile.h index c7b5024ea5..28037dbaca 100644 --- a/Source/Core/DolphinQt2/GameList/GameFile.h +++ b/Source/Core/DolphinQt2/GameList/GameFile.h @@ -80,22 +80,22 @@ private: QString m_extension; QString m_folder; QDateTime m_last_modified; - qint64 m_size; + qint64 m_size = 0; QString m_unique_id; QString m_maker_id; - u16 m_revision; + u16 m_revision = 0; QString m_internal_name; QMap<DiscIO::IVolume::ELanguage, QString> m_short_names; QMap<DiscIO::IVolume::ELanguage, QString> m_long_names; QMap<DiscIO::IVolume::ELanguage, QString> m_descriptions; QString m_company; - u8 m_disc_number; + u8 m_disc_number = 0; DiscIO::IVolume::EPlatform m_platform; DiscIO::IVolume::ECountry m_country; DiscIO::BlobType m_blob_type; - u64 m_raw_size; + u64 m_raw_size = 0; QPixmap m_banner; QString m_issues; - int m_rating; + int m_rating = 0; }; |
