diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-22 19:51:36 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-22 23:43:46 +0100 |
commit | c0a01f3adc466d07fc27020048e82cca60988970 (patch) | |
tree | 4bf8428709b8a55210a9591841c0dde623386ad1 /src/core/hle/kernel/code_set.h | |
parent | Merge pull request #2234 from lioncash/mutex (diff) | |
download | yuzu-c0a01f3adc466d07fc27020048e82cca60988970.tar yuzu-c0a01f3adc466d07fc27020048e82cca60988970.tar.gz yuzu-c0a01f3adc466d07fc27020048e82cca60988970.tar.bz2 yuzu-c0a01f3adc466d07fc27020048e82cca60988970.tar.lz yuzu-c0a01f3adc466d07fc27020048e82cca60988970.tar.xz yuzu-c0a01f3adc466d07fc27020048e82cca60988970.tar.zst yuzu-c0a01f3adc466d07fc27020048e82cca60988970.zip |
Diffstat (limited to 'src/core/hle/kernel/code_set.h')
-rw-r--r-- | src/core/hle/kernel/code_set.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/code_set.h b/src/core/hle/kernel/code_set.h index 834fd23d2..879957dcb 100644 --- a/src/core/hle/kernel/code_set.h +++ b/src/core/hle/kernel/code_set.h @@ -5,7 +5,6 @@ #pragma once #include <cstddef> -#include <memory> #include <vector> #include "common/common_types.h" @@ -78,7 +77,7 @@ struct CodeSet final { } /// The overall data that backs this code set. - std::shared_ptr<std::vector<u8>> memory; + std::vector<u8> memory; /// The segments that comprise this code set. std::array<Segment, 3> segments; |