mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
DiscIO: Don't use all uppercase for enum values
Also removing some prefixes that we don't need now that we're using enum classes instead of plain enums.
This commit is contained in:
@ -75,14 +75,14 @@ const FileSystem* VolumeWAD::GetFileSystem(const Partition& partition) const
|
||||
Region VolumeWAD::GetRegion() const
|
||||
{
|
||||
if (!m_tmd.IsValid())
|
||||
return Region::UNKNOWN_REGION;
|
||||
return Region::Unknown;
|
||||
return m_tmd.GetRegion();
|
||||
}
|
||||
|
||||
Country VolumeWAD::GetCountry(const Partition& partition) const
|
||||
{
|
||||
if (!m_tmd.IsValid())
|
||||
return Country::COUNTRY_UNKNOWN;
|
||||
return Country::Unknown;
|
||||
|
||||
u8 country_code = static_cast<u8>(m_tmd.GetTitleId() & 0xff);
|
||||
if (country_code == 2) // SYSMENU
|
||||
@ -130,7 +130,7 @@ std::optional<u16> VolumeWAD::GetRevision(const Partition& partition) const
|
||||
|
||||
Platform VolumeWAD::GetVolumeType() const
|
||||
{
|
||||
return Platform::WII_WAD;
|
||||
return Platform::WiiWAD;
|
||||
}
|
||||
|
||||
std::map<Language, std::string> VolumeWAD::GetLongNames() const
|
||||
|
Reference in New Issue
Block a user