summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/code_set.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-08-21 18:10:10 +0200
committerGitHub <noreply@github.com>2019-08-21 18:10:10 +0200
commitb4a8cfbd00863032fe4b4ed0145cfe1711b9317d (patch)
tree96d2ef5ae4b54857e2fd9b0dae5cb867acf30f7f /src/core/hle/kernel/code_set.h
parentMerge pull request #2769 from FernandoS27/commands-flush (diff)
parentCommon/Alignment: Add noexcept where required. (diff)
downloadyuzu-b4a8cfbd00863032fe4b4ed0145cfe1711b9317d.tar
yuzu-b4a8cfbd00863032fe4b4ed0145cfe1711b9317d.tar.gz
yuzu-b4a8cfbd00863032fe4b4ed0145cfe1711b9317d.tar.bz2
yuzu-b4a8cfbd00863032fe4b4ed0145cfe1711b9317d.tar.lz
yuzu-b4a8cfbd00863032fe4b4ed0145cfe1711b9317d.tar.xz
yuzu-b4a8cfbd00863032fe4b4ed0145cfe1711b9317d.tar.zst
yuzu-b4a8cfbd00863032fe4b4ed0145cfe1711b9317d.zip
Diffstat (limited to 'src/core/hle/kernel/code_set.h')
-rw-r--r--src/core/hle/kernel/code_set.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/code_set.h b/src/core/hle/kernel/code_set.h
index 879957dcb..d8ad54030 100644
--- a/src/core/hle/kernel/code_set.h
+++ b/src/core/hle/kernel/code_set.h
@@ -8,6 +8,7 @@
#include <vector>
#include "common/common_types.h"
+#include "core/hle/kernel/physical_memory.h"
namespace Kernel {
@@ -77,7 +78,7 @@ struct CodeSet final {
}
/// The overall data that backs this code set.
- std::vector<u8> memory;
+ Kernel::PhysicalMemory memory;
/// The segments that comprise this code set.
std::array<Segment, 3> segments;