diff options
| author | bunnei <bunneidev@gmail.com> | 2019-08-21 12:10:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-21 12:10:10 -0400 |
| commit | b4a8cfbd00863032fe4b4ed0145cfe1711b9317d (patch) | |
| tree | 96d2ef5ae4b54857e2fd9b0dae5cb867acf30f7f /src/core/hle/kernel/code_set.h | |
| parent | d654b3d82eed3093957223b17db12875c7752280 (diff) | |
| parent | febb88efc43ae171cc2880651b0665614c586504 (diff) | |
Merge pull request #2748 from FernandoS27/align-memory
VM_Manager: Align allocated host physical memory to 256bytes
Diffstat (limited to 'src/core/hle/kernel/code_set.h')
| -rw-r--r-- | src/core/hle/kernel/code_set.h | 3 |
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; |
