diff options
| -rw-r--r-- | src/core/hle/kernel/process.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index f29ee67c6..992689186 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | ||
| 7 | #include <bitset> | 8 | #include <bitset> |
| 8 | #include <cstddef> | 9 | #include <cstddef> |
| 9 | #include <memory> | 10 | #include <memory> |
| @@ -101,7 +102,7 @@ struct CodeSet final : public Object { | |||
| 101 | 102 | ||
| 102 | std::shared_ptr<std::vector<u8>> memory; | 103 | std::shared_ptr<std::vector<u8>> memory; |
| 103 | 104 | ||
| 104 | Segment segments[3]; | 105 | std::array<Segment, 3> segments; |
| 105 | VAddr entrypoint; | 106 | VAddr entrypoint; |
| 106 | 107 | ||
| 107 | /// Name of the process | 108 | /// Name of the process |