DVDInterface: Remove VolumeIsValid

It's the same as IsDiscInside.
This commit is contained in:
JosJuice
2016-01-30 19:03:59 +01:00
parent 3b632f5990
commit a176bf0229
4 changed files with 11 additions and 17 deletions

View File

@ -108,12 +108,11 @@ void DoState(PointerWrap& p);
void RegisterMMIO(MMIO::Mapping* mmio, u32 base);
// Disc access (don't call GetVolume unless you know that VolumeIsValid() == true)
// Disc access (don't call GetVolume unless you know that IsDiscInside() == true)
const DiscIO::IVolume& GetVolume();
bool SetVolumeName(const std::string& disc_path);
bool SetVolumeDirectory(const std::string& disc_path, bool is_wii,
const std::string& apploader_path = "", const std::string& DOL_path = "");
bool VolumeIsValid();
bool IsDiscInside();
void ChangeDiscAsHost(const std::string& new_path); // Can only be called by the host thread
void ChangeDiscAsCPU(const std::string& new_path); // Can only be called by the CPU thread