summaryrefslogtreecommitdiff
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-07-28 16:23:00 -0400
committerZach Hilman <zachhilman@gmail.com>2018-08-01 00:16:54 -0400
commit22342487e8fb851a9837db22408db56240aa6931 (patch)
tree65d8ec8cd180656e4ec6bb2ac5c928712f43122a /src/core/file_sys
parent83c3ae8be87463486239246a93f9dadf5d2b27bd (diff)
Extract mbedtls to cpp file
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/content_archive.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/content_archive.h b/src/core/file_sys/content_archive.h
index 1e8d9c8ae..d9ad3bf7e 100644
--- a/src/core/file_sys/content_archive.h
+++ b/src/core/file_sys/content_archive.h
@@ -9,6 +9,7 @@
#include <string>
#include <vector>
+#include "core/loader/loader.h"
#include "common/common_funcs.h"
#include "common/common_types.h"
#include "common/swap.h"
@@ -108,7 +109,7 @@ private:
Crypto::Key128 GetKeyAreaKey(NCASectionCryptoType type);
- VirtualFile Decrypt(NCASectionHeader header, VirtualFile in, size_t starting_offset);
+ VirtualFile Decrypt(NCASectionHeader header, VirtualFile in, u64 starting_offset);
};
} // namespace FileSys