mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
typo fix (to squash)
This commit is contained in:
parent
2b721b9e29
commit
cf4d715284
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "sys_rsx.h"
|
#include "sys_rsx.h"
|
||||||
|
|
||||||
#include <atomic>
|
|
||||||
#include "Emu/System.h"
|
#include "Emu/System.h"
|
||||||
#include "Emu/Cell/PPUModule.h"
|
#include "Emu/Cell/PPUModule.h"
|
||||||
#include "Emu/RSX/GSRender.h"
|
#include "Emu/RSX/GSRender.h"
|
||||||
|
@ -229,7 +228,7 @@ error_code sys_rsx_context_iounmap(u32 context_id, u32 io, u32 size)
|
||||||
while (io < end)
|
while (io < end)
|
||||||
{
|
{
|
||||||
const u32 ea_entry = std::exchange(RSXIOMem.ea[io++].raw(), 0xFFFF);
|
const u32 ea_entry = std::exchange(RSXIOMem.ea[io++].raw(), 0xFFFF);
|
||||||
if (ea_entry < 512) RSXIOMem.io[ea_entry].raw() = 0xFFFF;
|
if (ea_entry < 0xC00) RSXIOMem.io[ea_entry].raw() = 0xFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue