rsx-capture: unbreak

This commit is contained in:
eladash 2018-08-15 23:12:24 +03:00 committed by Ivan
parent 6c62f42d8d
commit 061c787e56
3 changed files with 9 additions and 9 deletions

View file

@ -881,10 +881,10 @@ namespace vm
g_locations =
{
std::make_shared<block_t>(0x00010000, 0x1FFF0000), // main
std::make_shared<block_t>(0xC0000000, 0x10000000), // video
std::make_shared<block_t>(0xD0000000, 0x10000000), // stack
nullptr, // user 64k pages
nullptr, // user 1m pages
std::make_shared<block_t>(0xC0000000, 0x10000000), // video
std::make_shared<block_t>(0xD0000000, 0x10000000), // stack
std::make_shared<block_t>(0xE0000000, 0x20000000), // SPU reserved
};
}