Common: Convert FromWhichRoot to enum class

This commit is contained in:
Dentomologist
2023-06-13 13:22:56 -07:00
parent 89e7e7d669
commit 7ff7c9e84f
7 changed files with 12 additions and 12 deletions

View File

@ -731,7 +731,7 @@ GameFile::CompareSyncIdentifier(const NetPlay::SyncIdentifier& sync_identifier)
std::string GameFile::GetWiiFSPath() const
{
ASSERT(DiscIO::IsWii(m_platform));
return Common::GetTitleDataPath(m_title_id, Common::FROM_CONFIGURED_ROOT);
return Common::GetTitleDataPath(m_title_id, Common::FromWhichRoot::Configured);
}
bool GameFile::ShouldShowFileFormatDetails() const