Added an Issues column for saving notes on what problems occur in the game and moved the Notes column to the end, since it doesn't seem to contain any important information.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1833 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
omegadox
2009-01-09 09:36:50 +00:00
parent 89603a91a6
commit 5eedc125fa
3 changed files with 30 additions and 7 deletions

View File

@ -34,6 +34,7 @@ public:
const std::string& GetDescription() const {return m_Description;}
const std::string& GetUniqueID() const {return m_UniqueID;}
DiscIO::IVolume::ECountry GetCountry() const {return m_Country;}
const std::string& GetIssues() const {return m_Issues;}
bool IsCompressed() const {return m_BlobCompressed;}
u64 GetFileSize() const {return m_FileSize;}
u64 GetVolumeSize() const {return m_VolumeSize;}
@ -49,6 +50,7 @@ private:
std::string m_Company;
std::string m_Description;
std::string m_UniqueID;
std::string m_Issues;
u64 m_FileSize;
u64 m_VolumeSize;