summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-03-24 17:40:09 -0400
committerGravatar Lioncash2019-03-24 17:40:11 -0400
commit7c4bc7b8833222d3360d20c2eeff3da4e90899d6 (patch)
tree5d40b222a9bec2fac69f4eb5e95b057a75088b49
parentMerge pull request #2232 from lioncash/transfer-memory (diff)
downloadyuzu-7c4bc7b8833222d3360d20c2eeff3da4e90899d6.tar.gz
yuzu-7c4bc7b8833222d3360d20c2eeff3da4e90899d6.tar.xz
yuzu-7c4bc7b8833222d3360d20c2eeff3da4e90899d6.zip
kernel/process: Remove unused AddressMapping struct
Another leftover from citra that's now no longer necessary.
Diffstat (limited to '')
-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;
35 35
36struct CodeSet; 36struct CodeSet;
37 37
38struct AddressMapping {
39 // Address and size must be page-aligned
40 VAddr address;
41 u64 size;
42 bool read_only;
43 bool unk_flag;
44};
45
46enum class MemoryRegion : u16 { 38enum class MemoryRegion : u16 {
47 APPLICATION = 1, 39 APPLICATION = 1,
48 SYSTEM = 2, 40 SYSTEM = 2,