aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/nca_patch.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-06 13:56:13 -0400
committerLioncash <mathew1800@gmail.com>2018-09-06 13:58:53 -0400
commitb155b3ef816f5c317240dea88956bff733bfaef9 (patch)
tree89086f527957f00126fd2eacc442018fa366d13e /src/core/file_sys/nca_patch.h
parenta859a35ec861e63f8f4681665c6de132a5b159bb (diff)
file_sys/nca_patch: Remove unnecessary includes
romfs.h doesn't need to be included in the header, the only real dependency here is common's swap.h that needs to be included.
Diffstat (limited to 'src/core/file_sys/nca_patch.h')
-rw-r--r--src/core/file_sys/nca_patch.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/file_sys/nca_patch.h b/src/core/file_sys/nca_patch.h
index 0d9ad95f5..381f3504f 100644
--- a/src/core/file_sys/nca_patch.h
+++ b/src/core/file_sys/nca_patch.h
@@ -5,10 +5,13 @@
#pragma once
#include <array>
+#include <memory>
#include <vector>
-#include <common/common_funcs.h>
+
+#include "common/common_funcs.h"
+#include "common/common_types.h"
+#include "common/swap.h"
#include "core/crypto/key_manager.h"
-#include "core/file_sys/romfs.h"
namespace FileSys {