summaryrefslogtreecommitdiff
path: root/Source/Core/UICommon/GameFile.cpp
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2023-06-13 13:22:56 -0700
committerDentomologist <dentomologist@gmail.com>2023-06-13 13:25:22 -0700
commit7ff7c9e84fa485503c39be22a3562cebb4d3d42a (patch)
tree4575a1a72acd378f64d8021851681211df245d0e /Source/Core/UICommon/GameFile.cpp
parent89e7e7d6693f8da827f60c9e08b7ec509740a9bc (diff)
Common: Convert FromWhichRoot to enum class
Diffstat (limited to 'Source/Core/UICommon/GameFile.cpp')
-rw-r--r--Source/Core/UICommon/GameFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/UICommon/GameFile.cpp b/Source/Core/UICommon/GameFile.cpp
index 4ee251b2ab..2d467e8110 100644
--- a/Source/Core/UICommon/GameFile.cpp
+++ b/Source/Core/UICommon/GameFile.cpp
@@ -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