diff options
| author | JosJuice <josjuice@gmail.com> | 2020-07-04 14:51:13 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2020-07-04 14:51:13 +0200 |
| commit | f24566bf39211671cd05fd8b88532b75d8b38e83 (patch) | |
| tree | 9c5e650dc20108ccbe84476fa7bcacef57b509a2 /Source/Core/DiscIO/VolumeWad.cpp | |
| parent | f9aaf8b9715470f0fd9182164fc6bd3c0443453b (diff) | |
DiscIO: Add Volume::IsDatelDisc
Diffstat (limited to 'Source/Core/DiscIO/VolumeWad.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeWad.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/VolumeWad.cpp b/Source/Core/DiscIO/VolumeWad.cpp index 7681d3932c..61b772ec31 100644 --- a/Source/Core/DiscIO/VolumeWad.cpp +++ b/Source/Core/DiscIO/VolumeWad.cpp @@ -284,6 +284,11 @@ Platform VolumeWAD::GetVolumeType() const return Platform::WiiWAD; } +bool VolumeWAD::IsDatelDisc() const +{ + return false; +} + std::map<Language, std::string> VolumeWAD::GetLongNames() const { if (!m_tmd.IsValid() || !IOS::ES::IsChannel(m_tmd.GetTitleId())) |
