mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 15:55:31 +01:00
Merge pull request #5106 from lioncash/constant
Memmap: Replace '0' constant with nullptr
This commit is contained in:
commit
cb87b25ac6
@ -288,7 +288,7 @@ void Shutdown()
|
|||||||
if ((flags & region.flags) != region.flags)
|
if ((flags & region.flags) != region.flags)
|
||||||
continue;
|
continue;
|
||||||
g_arena.ReleaseView(*region.out_pointer, region.size);
|
g_arena.ReleaseView(*region.out_pointer, region.size);
|
||||||
*region.out_pointer = 0;
|
*region.out_pointer = nullptr;
|
||||||
}
|
}
|
||||||
for (auto& entry : logical_mapped_entries)
|
for (auto& entry : logical_mapped_entries)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user