mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: Fix internal res tracking
This commit is contained in:
parent
cd87a64621
commit
6b72fe793b
1 changed files with 4 additions and 1 deletions
|
@ -1630,7 +1630,10 @@ namespace rsx
|
|||
layout.aa_factors[1] = aa_factor_v;
|
||||
|
||||
// Log this to frame stats
|
||||
m_frame_stats.framebuffer_stats.add(layout.width, layout.height, aa_mode);
|
||||
if (layout.target != rsx::surface_target::none)
|
||||
{
|
||||
m_frame_stats.framebuffer_stats.add(layout.width, layout.height, aa_mode);
|
||||
}
|
||||
|
||||
// Check if anything has changed
|
||||
bool really_changed = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue