memory: fix IsValidVirtualAddress for RasterizerCachedMemory
RasterizerCachedMemory doesn't has pointer but should be considered as valid
This commit is contained in:
parent
852dc95cf2
commit
5c43a5652b
1 changed files with 3 additions and 0 deletions
|
@ -251,6 +251,9 @@ bool IsValidVirtualAddress(const VAddr vaddr) {
|
|||
if (page_pointer)
|
||||
return true;
|
||||
|
||||
if (current_page_table->attributes[vaddr >> PAGE_BITS] == PageType::RasterizerCachedMemory)
|
||||
return true;
|
||||
|
||||
if (current_page_table->attributes[vaddr >> PAGE_BITS] != PageType::Special)
|
||||
return false;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue