summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorTony Wasserka <neobrainx@gmail.com>2014-12-20 15:07:47 +0100
committerTony Wasserka <neobrainx@gmail.com>2014-12-20 15:07:47 +0100
commitc2753d37a743e48548a6c792a0ec2278591f79a0 (patch)
treef456dd3613a1916f492b58013be929b7983b29c5 /src/core/file_sys
parentMerge pull request #306 from Subv/even_more_savedata (diff)
parentRemove C++14/1y requirement (diff)
downloadyuzu-c2753d37a743e48548a6c792a0ec2278591f79a0.tar
yuzu-c2753d37a743e48548a6c792a0ec2278591f79a0.tar.gz
yuzu-c2753d37a743e48548a6c792a0ec2278591f79a0.tar.bz2
yuzu-c2753d37a743e48548a6c792a0ec2278591f79a0.tar.lz
yuzu-c2753d37a743e48548a6c792a0ec2278591f79a0.tar.xz
yuzu-c2753d37a743e48548a6c792a0ec2278591f79a0.tar.zst
yuzu-c2753d37a743e48548a6c792a0ec2278591f79a0.zip
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/archive_romfs.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/file_sys/archive_romfs.cpp b/src/core/file_sys/archive_romfs.cpp
index 0709b62a1..1e3e9dc60 100644
--- a/src/core/file_sys/archive_romfs.cpp
+++ b/src/core/file_sys/archive_romfs.cpp
@@ -5,6 +5,7 @@
#include <memory>
#include "common/common_types.h"
+#include "common/make_unique.h"
#include "core/file_sys/archive_romfs.h"
#include "core/file_sys/directory_romfs.h"
@@ -29,7 +30,7 @@ Archive_RomFS::Archive_RomFS(const Loader::AppLoader& app_loader) {
* @return Opened file, or nullptr
*/
std::unique_ptr<FileBackend> Archive_RomFS::OpenFile(const Path& path, const Mode mode) const {
- return std::make_unique<File_RomFS>(this);
+ return Common::make_unique<File_RomFS>(this);
}
/**
@@ -78,7 +79,7 @@ bool Archive_RomFS::RenameDirectory(const FileSys::Path& src_path, const FileSys
* @return Opened directory, or nullptr
*/
std::unique_ptr<DirectoryBackend> Archive_RomFS::OpenDirectory(const Path& path) const {
- return std::make_unique<Directory_RomFS>();
+ return Common::make_unique<Directory_RomFS>();
}
} // namespace FileSys