diff options
| author | 2022-02-19 00:14:27 -0800 | |
|---|---|---|
| committer | 2022-02-19 00:14:27 -0800 | |
| commit | 92b2e92620a04af6d1ce2d35f55905b3a8b805fc (patch) | |
| tree | c152795267b26a09564860d3369beaa857c9ca1c /src/common/page_table.h | |
| parent | core: hle: kernel: KPageTable: Improve Un/MapPhysicalMemory. (diff) | |
| download | yuzu-92b2e92620a04af6d1ce2d35f55905b3a8b805fc.tar.gz yuzu-92b2e92620a04af6d1ce2d35f55905b3a8b805fc.tar.xz yuzu-92b2e92620a04af6d1ce2d35f55905b3a8b805fc.zip | |
fixup! core: hle: kernel: KPageTable: Improve Un/MapPhysicalMemory.
Diffstat (limited to 'src/common/page_table.h')
| -rw-r--r-- | src/common/page_table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/page_table.h b/src/common/page_table.h index fe254d7ae..82d91e9f3 100644 --- a/src/common/page_table.h +++ b/src/common/page_table.h | |||
| @@ -99,9 +99,9 @@ struct PageTable { | |||
| 99 | PageTable(PageTable&&) noexcept = default; | 99 | PageTable(PageTable&&) noexcept = default; |
| 100 | PageTable& operator=(PageTable&&) noexcept = default; | 100 | PageTable& operator=(PageTable&&) noexcept = default; |
| 101 | 101 | ||
| 102 | bool BeginTraversal(TraversalEntry* out_entry, TraversalContext* out_context, | 102 | bool BeginTraversal(TraversalEntry& out_entry, TraversalContext& out_context, |
| 103 | u64 address) const; | 103 | u64 address) const; |
| 104 | bool ContinueTraversal(TraversalEntry* out_entry, TraversalContext* context) const; | 104 | bool ContinueTraversal(TraversalEntry& out_entry, TraversalContext& context) const; |
| 105 | 105 | ||
| 106 | /** | 106 | /** |
| 107 | * Resizes the page table to be able to accommodate enough pages within | 107 | * Resizes the page table to be able to accommodate enough pages within |