summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/ips_layer.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-09 19:39:23 +0200
committerLioncash <mathew1800@gmail.com>2018-10-09 20:10:13 +0200
commitf7d2889fb46bf5589b53952c656fdc090334b9de (patch)
treeb0b1cb2608b66f2553a271614b1fc4eaa38f020d /src/core/file_sys/ips_layer.h
parentips_layer: std::move data within PatchIPS() and Apply() (diff)
downloadyuzu-f7d2889fb46bf5589b53952c656fdc090334b9de.tar
yuzu-f7d2889fb46bf5589b53952c656fdc090334b9de.tar.gz
yuzu-f7d2889fb46bf5589b53952c656fdc090334b9de.tar.bz2
yuzu-f7d2889fb46bf5589b53952c656fdc090334b9de.tar.lz
yuzu-f7d2889fb46bf5589b53952c656fdc090334b9de.tar.xz
yuzu-f7d2889fb46bf5589b53952c656fdc090334b9de.tar.zst
yuzu-f7d2889fb46bf5589b53952c656fdc090334b9de.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/ips_layer.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/core/file_sys/ips_layer.h b/src/core/file_sys/ips_layer.h
index 57da00da8..450b2f71e 100644
--- a/src/core/file_sys/ips_layer.h
+++ b/src/core/file_sys/ips_layer.h
@@ -4,8 +4,11 @@
#pragma once
+#include <array>
#include <memory>
+#include <vector>
+#include "common/common_types.h"
#include "core/file_sys/vfs.h"
namespace FileSys {
@@ -22,17 +25,13 @@ public:
VirtualFile Apply(const VirtualFile& in) const;
private:
+ struct IPSwitchPatch;
+
void ParseFlag(const std::string& flag);
void Parse();
bool valid = false;
- struct IPSwitchPatch {
- std::string name;
- bool enabled;
- std::map<u32, std::vector<u8>> records;
- };
-
VirtualFile patch_text;
std::vector<IPSwitchPatch> patches;
std::array<u8, 0x20> nso_build_id{};