summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-13 10:48:34 -0400
committerLioncash <mathew1800@gmail.com>2020-07-13 10:51:23 -0400
commitf2f876e3ffb45262e47519a5f10ea8f29a9b7f96 (patch)
treed06ef06145749c58db2110eb5a4fc664d7b57c61 /src
parentb2305dcee0d67c4217c1ddc25ca96fd7e285bfbc (diff)
memory_layout: Remove unused data member
This isn't used, so it can be removed entirely, shrinking the structure size by 8 bytes.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/memory/memory_layout.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/kernel/memory/memory_layout.h b/src/core/hle/kernel/memory/memory_layout.h
index 830c6f0d7..9b3d6267a 100644
--- a/src/core/hle/kernel/memory/memory_layout.h
+++ b/src/core/hle/kernel/memory/memory_layout.h
@@ -66,8 +66,6 @@ private:
const MemoryRegion application;
const MemoryRegion applet;
const MemoryRegion system;
-
- const PAddr start_address{};
};
} // namespace Kernel::Memory