summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-24 17:40:09 -0400
committerLioncash <mathew1800@gmail.com>2019-03-24 17:40:11 -0400
commit7c4bc7b8833222d3360d20c2eeff3da4e90899d6 (patch)
tree5d40b222a9bec2fac69f4eb5e95b057a75088b49
parent3f74518e19331f1344960ae522c7439446febcd0 (diff)
kernel/process: Remove unused AddressMapping struct
Another leftover from citra that's now no longer necessary.
-rw-r--r--src/core/hle/kernel/process.h8
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,