summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-06 19:56:13 +0200
committerLioncash <mathew1800@gmail.com>2018-09-06 19:58:53 +0200
commitb155b3ef816f5c317240dea88956bff733bfaef9 (patch)
tree89086f527957f00126fd2eacc442018fa366d13e /src/core
parentfile_sys/patch_manager: Add missing includes (diff)
downloadyuzu-b155b3ef816f5c317240dea88956bff733bfaef9.tar
yuzu-b155b3ef816f5c317240dea88956bff733bfaef9.tar.gz
yuzu-b155b3ef816f5c317240dea88956bff733bfaef9.tar.bz2
yuzu-b155b3ef816f5c317240dea88956bff733bfaef9.tar.lz
yuzu-b155b3ef816f5c317240dea88956bff733bfaef9.tar.xz
yuzu-b155b3ef816f5c317240dea88956bff733bfaef9.tar.zst
yuzu-b155b3ef816f5c317240dea88956bff733bfaef9.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/file_sys/nca_patch.cpp4
-rw-r--r--src/core/file_sys/nca_patch.h7
2 files changed, 9 insertions, 2 deletions
diff --git a/src/core/file_sys/nca_patch.cpp b/src/core/file_sys/nca_patch.cpp
index e0111bffc..4836706bb 100644
--- a/src/core/file_sys/nca_patch.cpp
+++ b/src/core/file_sys/nca_patch.cpp
@@ -2,6 +2,10 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include <algorithm>
+#include <cstddef>
+#include <cstring>
+
#include "common/assert.h"
#include "core/crypto/aes_util.h"
#include "core/file_sys/nca_patch.h"
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 {