diff options
| author | 2019-03-24 17:40:09 -0400 | |
|---|---|---|
| committer | 2019-03-24 17:40:11 -0400 | |
| commit | 7c4bc7b8833222d3360d20c2eeff3da4e90899d6 (patch) | |
| tree | 5d40b222a9bec2fac69f4eb5e95b057a75088b49 | |
| parent | Merge pull request #2232 from lioncash/transfer-memory (diff) | |
| download | yuzu-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.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; | |||
| 35 | 35 | ||
| 36 | struct CodeSet; | 36 | struct CodeSet; |
| 37 | 37 | ||
| 38 | struct 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 | |||
| 46 | enum class MemoryRegion : u16 { | 38 | enum class MemoryRegion : u16 { |
| 47 | APPLICATION = 1, | 39 | APPLICATION = 1, |
| 48 | SYSTEM = 2, | 40 | SYSTEM = 2, |