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/VolumeWii.cpp | |
| parent | f9aaf8b9715470f0fd9182164fc6bd3c0443453b (diff) | |
DiscIO: Add Volume::IsDatelDisc
Diffstat (limited to 'Source/Core/DiscIO/VolumeWii.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeWii.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/VolumeWii.cpp b/Source/Core/DiscIO/VolumeWii.cpp index 9880e6d79e..73797fe1e3 100644 --- a/Source/Core/DiscIO/VolumeWii.cpp +++ b/Source/Core/DiscIO/VolumeWii.cpp @@ -334,6 +334,11 @@ Platform VolumeWii::GetVolumeType() const return Platform::WiiDisc; } +bool VolumeWii::IsDatelDisc() const +{ + return m_game_partition == PARTITION_NONE; +} + BlobType VolumeWii::GetBlobType() const { return m_reader->GetBlobType(); |
