summaryrefslogtreecommitdiffstats
path: root/src/video_core/memory_manager.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-09 04:51:31 +0200
committerbunnei <bunneidev@gmail.com>2020-04-17 06:59:34 +0200
commit32fc2aae3cd767faf57e9a6f80ebae20bdfb2218 (patch)
tree870a8fea541547dcc11866cc7159f27e4bfc31cd /src/video_core/memory_manager.h
parentcore: memory: Updates for new VMM. (diff)
downloadyuzu-32fc2aae3cd767faf57e9a6f80ebae20bdfb2218.tar
yuzu-32fc2aae3cd767faf57e9a6f80ebae20bdfb2218.tar.gz
yuzu-32fc2aae3cd767faf57e9a6f80ebae20bdfb2218.tar.bz2
yuzu-32fc2aae3cd767faf57e9a6f80ebae20bdfb2218.tar.lz
yuzu-32fc2aae3cd767faf57e9a6f80ebae20bdfb2218.tar.xz
yuzu-32fc2aae3cd767faf57e9a6f80ebae20bdfb2218.tar.zst
yuzu-32fc2aae3cd767faf57e9a6f80ebae20bdfb2218.zip
Diffstat (limited to 'src/video_core/memory_manager.h')
-rw-r--r--src/video_core/memory_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h
index 0d9468535..0ddd52d5a 100644
--- a/src/video_core/memory_manager.h
+++ b/src/video_core/memory_manager.h
@@ -179,7 +179,7 @@ private:
/// End of address space, based on address space in bits.
static constexpr GPUVAddr address_space_end{1ULL << address_space_width};
- Common::BackingPageTable page_table{page_bits};
+ Common::PageTable page_table;
VMAMap vma_map;
VideoCore::RasterizerInterface& rasterizer;