mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-06 09:39:55 +00:00
vm: Minor fix in vm::close
Supplied size was wrong.
This commit is contained in:
parent
4ed76a15ff
commit
aaaeb66cc8
@ -1659,7 +1659,7 @@ namespace vm
|
||||
g_locations.clear();
|
||||
|
||||
utils::memory_decommit(g_base_addr, 0x200000000);
|
||||
utils::memory_decommit(g_exec_addr, 0x100000000);
|
||||
utils::memory_decommit(g_exec_addr, 0x200000000);
|
||||
utils::memory_decommit(g_stat_addr, 0x100000000);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user