summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-07-13 10:48:34 -0400
committerGravatar Lioncash2020-07-13 10:51:23 -0400
commitf2f876e3ffb45262e47519a5f10ea8f29a9b7f96 (patch)
treed06ef06145749c58db2110eb5a4fc664d7b57c61
parentMerge pull request #4317 from lioncash/boost (diff)
downloadyuzu-f2f876e3ffb45262e47519a5f10ea8f29a9b7f96.tar.gz
yuzu-f2f876e3ffb45262e47519a5f10ea8f29a9b7f96.tar.xz
yuzu-f2f876e3ffb45262e47519a5f10ea8f29a9b7f96.zip
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 '')
-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:
66 const MemoryRegion application; 66 const MemoryRegion application;
67 const MemoryRegion applet; 67 const MemoryRegion applet;
68 const MemoryRegion system; 68 const MemoryRegion system;
69
70 const PAddr start_address{};
71}; 69};
72 70
73} // namespace Kernel::Memory 71} // namespace Kernel::Memory