summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs/fs_user.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-15 05:44:04 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-16 04:08:42 +0100
commitf6153679b0781eea084b22f3ceecc74b1fe6b018 (patch)
treeaa8d86cb2a525630c3abf95cfaa658e3fd634516 /src/core/hle/service/fs/fs_user.cpp
parentHLE: Rename namespaces to match move & fix initialization order (diff)
downloadyuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar
yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar.gz
yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar.bz2
yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar.lz
yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar.xz
yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.tar.zst
yuzu-f6153679b0781eea084b22f3ceecc74b1fe6b018.zip
Diffstat (limited to 'src/core/hle/service/fs/fs_user.cpp')
-rw-r--r--src/core/hle/service/fs/fs_user.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/fs/fs_user.cpp b/src/core/hle/service/fs/fs_user.cpp
index 76689c6af..eda7cb8ab 100644
--- a/src/core/hle/service/fs/fs_user.cpp
+++ b/src/core/hle/service/fs/fs_user.cpp
@@ -88,7 +88,7 @@ static void OpenFile(Service::Interface* self) {
static void OpenFileDirectly(Service::Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
- auto archive_id = static_cast<FileSys::Archive::IdCode>(cmd_buff[2]);
+ auto archive_id = static_cast<FS::ArchiveIdCode>(cmd_buff[2]);
auto archivename_type = static_cast<FileSys::LowPathType>(cmd_buff[3]);
u32 archivename_size = cmd_buff[4];
auto filename_type = static_cast<FileSys::LowPathType>(cmd_buff[5]);
@@ -334,7 +334,7 @@ static void OpenDirectory(Service::Interface* self) {
static void OpenArchive(Service::Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
- auto archive_id = static_cast<FileSys::Archive::IdCode>(cmd_buff[1]);
+ auto archive_id = static_cast<FS::ArchiveIdCode>(cmd_buff[1]);
auto archivename_type = static_cast<FileSys::LowPathType>(cmd_buff[2]);
u32 archivename_size = cmd_buff[3];
u32 archivename_ptr = cmd_buff[5];