diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-13 18:18:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 18:18:23 +0100 |
commit | d60767d393b0fd163d2676f649e3c209537ef884 (patch) | |
tree | fc8db322e44cb699e17081e7ed6d4f484eb4f75e /src/core/loader/3dsx.cpp | |
parent | video_core/shader: Document sanitized MUL operation (diff) | |
parent | loader: use self NCCH archive (diff) | |
download | yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.gz yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.bz2 yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.lz yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.xz yuzu-d60767d393b0fd163d2676f649e3c209537ef884.tar.zst yuzu-d60767d393b0fd163d2676f649e3c209537ef884.zip |
Diffstat (limited to 'src/core/loader/3dsx.cpp')
-rw-r--r-- | src/core/loader/3dsx.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/loader/3dsx.cpp b/src/core/loader/3dsx.cpp index 09266e8b0..74e336487 100644 --- a/src/core/loader/3dsx.cpp +++ b/src/core/loader/3dsx.cpp @@ -5,7 +5,7 @@ #include <algorithm> #include <vector> #include "common/logging/log.h" -#include "core/file_sys/archive_romfs.h" +#include "core/file_sys/archive_selfncch.h" #include "core/hle/kernel/process.h" #include "core/hle/kernel/resource_limit.h" #include "core/hle/service/fs/archive.h" @@ -277,8 +277,8 @@ ResultStatus AppLoader_THREEDSX::Load() { Kernel::g_current_process->Run(48, Kernel::DEFAULT_STACK_SIZE); - Service::FS::RegisterArchiveType(std::make_unique<FileSys::ArchiveFactory_RomFS>(*this), - Service::FS::ArchiveIdCode::RomFS); + Service::FS::RegisterArchiveType(std::make_unique<FileSys::ArchiveFactory_SelfNCCH>(*this), + Service::FS::ArchiveIdCode::SelfNCCH); is_loaded = true; return ResultStatus::Success; |