Exverge
5 days ago
No known key found for this signature in database
GPG Key ID: DAD399BCC5FB77E4
1 changed files with
1 additions and
1 deletions
-
src/core/memory.cpp
|
|
@ -77,7 +77,7 @@ struct Memory::Impl { |
|
|
Common::PageType::Memory); |
|
|
Common::PageType::Memory); |
|
|
|
|
|
|
|
|
if (current_page_table->fastmem_arena) { |
|
|
if (current_page_table->fastmem_arena) { |
|
|
bool is_fastmem = GetInteger(base) % Common::HostPageSize != GetInteger(target) % Common::HostPageSize; |
|
|
|
|
|
|
|
|
bool is_fastmem = GetInteger(base) % Common::HostPageSize == GetInteger(target) % Common::HostPageSize; |
|
|
if (!is_fastmem) { |
|
|
if (!is_fastmem) { |
|
|
LOG_WARNING(HW_Memory, "base {:#x} and target {:#x} aren't aligned in relation to host page size {}", |
|
|
LOG_WARNING(HW_Memory, "base {:#x} and target {:#x} aren't aligned in relation to host page size {}", |
|
|
GetInteger(base), GetInteger(target), Common::HostPageSize); |
|
|
GetInteger(base), GetInteger(target), Common::HostPageSize); |
|
|
|