diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2019-07-21 15:32:52 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-21 15:32:52 +0800 |
| commit | da1fbbc5d5d0eda5fcdccadd20207b4b525f8a7e (patch) | |
| tree | 28afb7bb2892547e824f688261ec50c0616ef15b /Source/Core/UICommon/GameFile.cpp | |
| parent | cd7a374ab91f1f1dd46e5631309bea7ed5efc23d (diff) | |
| parent | 34f32898e63e7dd5d0251fd630f8d569432c9ac3 (diff) | |
Merge pull request #8243 from JosJuice/merge-wad-classes
DiscIO: Merge WiiWAD into VolumeWAD
Diffstat (limited to 'Source/Core/UICommon/GameFile.cpp')
| -rw-r--r-- | Source/Core/UICommon/GameFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/UICommon/GameFile.cpp b/Source/Core/UICommon/GameFile.cpp index fb8c3d0a67..5431face3a 100644 --- a/Source/Core/UICommon/GameFile.cpp +++ b/Source/Core/UICommon/GameFile.cpp @@ -121,7 +121,7 @@ GameFile::GameFile(std::string path) : m_file_path(std::move(path)) SplitPath(m_file_path, nullptr, &name, &extension); m_file_name = name + extension; - std::unique_ptr<DiscIO::Volume> volume(DiscIO::CreateVolumeFromFilename(m_file_path)); + std::unique_ptr<DiscIO::Volume> volume(DiscIO::CreateVolume(m_file_path)); if (volume != nullptr) { m_platform = volume->GetVolumeType(); |
