summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-11-27 11:28:19 +0100
committerLioncash <mathew1800@gmail.com>2019-11-27 11:29:52 +0100
commitd66ab2b8aa6042672581064172ab1f2a5489461b (patch)
treea21e47722a3eb61a8ea66be3a2fbb645b85abe5c
parentfilesys/romfs: Make ProcessFile and ProcessDirectory internally linked (diff)
downloadyuzu-d66ab2b8aa6042672581064172ab1f2a5489461b.tar
yuzu-d66ab2b8aa6042672581064172ab1f2a5489461b.tar.gz
yuzu-d66ab2b8aa6042672581064172ab1f2a5489461b.tar.bz2
yuzu-d66ab2b8aa6042672581064172ab1f2a5489461b.tar.lz
yuzu-d66ab2b8aa6042672581064172ab1f2a5489461b.tar.xz
yuzu-d66ab2b8aa6042672581064172ab1f2a5489461b.tar.zst
yuzu-d66ab2b8aa6042672581064172ab1f2a5489461b.zip
-rw-r--r--src/core/file_sys/romfs.cpp2
-rw-r--r--src/core/file_sys/romfs.h4
2 files changed, 2 insertions, 4 deletions
diff --git a/src/core/file_sys/romfs.cpp b/src/core/file_sys/romfs.cpp
index 5f24bc5ae..c909d1ce4 100644
--- a/src/core/file_sys/romfs.cpp
+++ b/src/core/file_sys/romfs.cpp
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include <memory>
+
#include "common/common_types.h"
#include "common/swap.h"
#include "core/file_sys/fsmitm_romfsbuild.h"
diff --git a/src/core/file_sys/romfs.h b/src/core/file_sys/romfs.h
index 1c89be8a4..2fd07ed04 100644
--- a/src/core/file_sys/romfs.h
+++ b/src/core/file_sys/romfs.h
@@ -5,10 +5,6 @@
#pragma once
#include <array>
-#include <map>
-#include "common/common_funcs.h"
-#include "common/common_types.h"
-#include "common/swap.h"
#include "core/file_sys/vfs.h"
namespace FileSys {