mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 09:39:13 +00:00
DolphinWX: Don't use IsElfOrDol outside of ISOFile
It's redundant because GetPlatform can do the same thing.
This commit is contained in:
parent
ad978122d9
commit
cb3b1b6f44
3 changed files with 27 additions and 27 deletions
|
@ -43,7 +43,6 @@ public:
|
|||
u64 GetVolumeSize() const {return m_VolumeSize;}
|
||||
// 0 is the first disc, 1 is the second disc
|
||||
u8 GetDiscNumber() const { return m_disc_number; }
|
||||
bool IsElfOrDol() const;
|
||||
|
||||
#if defined(HAVE_WX) && HAVE_WX
|
||||
const wxBitmap& GetBitmap() const {return m_Bitmap;}
|
||||
|
@ -82,7 +81,8 @@ private:
|
|||
bool LoadFromCache();
|
||||
void SaveToCache();
|
||||
|
||||
std::string CreateCacheFilename();
|
||||
bool IsElfOrDol() const;
|
||||
std::string CreateCacheFilename() const;
|
||||
|
||||
void ReadBanner(const DiscIO::IVolume& volume);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue