mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
DVDInterface: Remove VolumeIsValid
It's the same as IsDiscInside.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user