summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-03-14 21:50:27 +0100
committerGitHub <noreply@github.com>2020-03-14 21:50:27 +0100
commit4dfd5c84ea00cb3c2d5772f6951af93779b6d70e (patch)
tree9b9235159a9ef45e5fdbfb6bc60587e370cda8b7 /src/video_core
parentMerge pull request #3500 from ReinUsesLisp/incompatible-types (diff)
parentPageTable: move backing addresses to a children class as the CPU page table does not need them. (diff)
downloadyuzu-4dfd5c84ea00cb3c2d5772f6951af93779b6d70e.tar
yuzu-4dfd5c84ea00cb3c2d5772f6951af93779b6d70e.tar.gz
yuzu-4dfd5c84ea00cb3c2d5772f6951af93779b6d70e.tar.bz2
yuzu-4dfd5c84ea00cb3c2d5772f6951af93779b6d70e.tar.lz
yuzu-4dfd5c84ea00cb3c2d5772f6951af93779b6d70e.tar.xz
yuzu-4dfd5c84ea00cb3c2d5772f6951af93779b6d70e.tar.zst
yuzu-4dfd5c84ea00cb3c2d5772f6951af93779b6d70e.zip
Diffstat (limited to 'src/video_core')
-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 aea010087..073bdb491 100644
--- a/src/video_core/memory_manager.h
+++ b/src/video_core/memory_manager.h
@@ -174,7 +174,7 @@ private:
/// End of address space, based on address space in bits.
static constexpr GPUVAddr address_space_end{1ULL << address_space_width};
- Common::PageTable page_table{page_bits};
+ Common::BackingPageTable page_table{page_bits};
VMAMap vma_map;
VideoCore::RasterizerInterface& rasterizer;