mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
Modernize RSX logging (rsx_log variable)
This commit is contained in:
parent
3c0bd821c8
commit
15391f45d0
57 changed files with 257 additions and 256 deletions
|
@ -378,7 +378,7 @@ error_code sys_rsx_context_attribute(u32 context_id, u32 package_id, u64 a3, u64
|
|||
// sanity check, the head should have a 'queued' buffer on it, and it should have been previously 'queued'
|
||||
const u32 sanity_check = 0x40000000 & (1 << flip_idx);
|
||||
if ((driverInfo.head[a3].flipFlags & sanity_check) != sanity_check)
|
||||
LOG_ERROR(RSX, "Display Flip Queued: Flipping non previously queued buffer 0x%llx", a4);
|
||||
rsx_log.error("Display Flip Queued: Flipping non previously queued buffer 0x%llx", a4);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -392,7 +392,7 @@ error_code sys_rsx_context_attribute(u32 context_id, u32 package_id, u64 a3, u64
|
|||
}
|
||||
if (flip_idx == ~0u)
|
||||
{
|
||||
LOG_ERROR(RSX, "Display Flip: Couldn't find display buffer offset, flipping 0. Offset: 0x%x", a4);
|
||||
rsx_log.error("Display Flip: Couldn't find display buffer offset, flipping 0. Offset: 0x%x", a4);
|
||||
flip_idx = 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue