mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
DolphinWX: Don't use IsElfOrDol outside of ISOFile
It's redundant because GetPlatform can do the same thing.
This commit is contained in:
@ -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);
|
||||
};
|
||||
|
Reference in New Issue
Block a user