Skip to content

Commit

Permalink
vm: Minor fix in vm::close
Browse files Browse the repository at this point in the history
Supplied size was wrong.
  • Loading branch information
Nekotekina committed Jan 15, 2021
1 parent 4ed76a1 commit aaaeb66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Memory/vm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit aaaeb66

Please sign in to comment.