Browse Source
Merge pull request #2316 from ReinUsesLisp/fixup-process
process: Fix up compilation
pull/15/merge
Mat M
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/kernel/process.cpp
|
|
|
@ -234,7 +234,7 @@ void Process::LoadModule(CodeSet module_, VAddr base_addr) { |
|
|
|
MapSegment(module_.RODataSegment(), VMAPermission::Read, MemoryState::CodeData); |
|
|
|
MapSegment(module_.DataSegment(), VMAPermission::ReadWrite, MemoryState::CodeData); |
|
|
|
|
|
|
|
code_memory_size += module_.memory->size(); |
|
|
|
code_memory_size += module_.memory.size(); |
|
|
|
|
|
|
|
// Clear instruction cache in CPU JIT
|
|
|
|
system.InvalidateCpuInstructionCaches(); |
|
|
|
|