diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-21 06:00:18 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-25 06:05:59 +0200 |
commit | 3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a (patch) | |
tree | f1fe3acaba7ad0508cc893aebf32f7776ed0ea4a /src/core/hle/service/ptm | |
parent | Make BitField and ResultCode constexpr-initializable (diff) | |
download | yuzu-3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a.tar yuzu-3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a.tar.gz yuzu-3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a.tar.bz2 yuzu-3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a.tar.lz yuzu-3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a.tar.xz yuzu-3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a.tar.zst yuzu-3b1f0fea31d3c56d94f580c1ea3978a5590b5f8a.zip |
Diffstat (limited to 'src/core/hle/service/ptm')
-rw-r--r-- | src/core/hle/service/ptm/ptm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp index 319e8c946..b6d6d105a 100644 --- a/src/core/hle/service/ptm/ptm.cpp +++ b/src/core/hle/service/ptm/ptm.cpp @@ -134,7 +134,7 @@ void Init() { auto archive_result = Service::FS::OpenArchive(Service::FS::ArchiveIdCode::SharedExtSaveData, archive_path); // If the archive didn't exist, create the files inside - if (archive_result.Code().description == ErrorDescription::FS_NotFormatted) { + if (archive_result.Code().description == static_cast<u32>(ErrorDescription::FS_NotFormatted)) { // Format the archive to create the directories Service::FS::FormatArchive(Service::FS::ArchiveIdCode::SharedExtSaveData, FileSys::ArchiveFormatInfo(), archive_path); |