diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-24 17:40:09 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-24 17:40:11 -0400 |
commit | 7c4bc7b8833222d3360d20c2eeff3da4e90899d6 (patch) | |
tree | 5d40b222a9bec2fac69f4eb5e95b057a75088b49 /src | |
parent | 3f74518e19331f1344960ae522c7439446febcd0 (diff) |
kernel/process: Remove unused AddressMapping struct
Another leftover from citra that's now no longer necessary.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/process.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h index 1bd7bf5c1..a0217d3d8 100644 --- a/src/core/hle/kernel/process.h +++ b/src/core/hle/kernel/process.h @@ -35,14 +35,6 @@ class Thread; struct CodeSet; -struct AddressMapping { - // Address and size must be page-aligned - VAddr address; - u64 size; - bool read_only; - bool unk_flag; -}; - enum class MemoryRegion : u16 { APPLICATION = 1, SYSTEM = 2, |