mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: Typo fix
- This silly typo broke the flip improvements in the GT fixes PR
This commit is contained in:
parent
2a62fa892b
commit
c80c7f06bb
2 changed files with 4 additions and 4 deletions
|
@ -1636,8 +1636,8 @@ void GLGSRender::flip(int buffer)
|
|||
buffer_width = rsx::apply_resolution_scale(buffer_width, true);
|
||||
buffer_height = rsx::apply_resolution_scale(buffer_height, true);
|
||||
|
||||
if (buffer_width < render_target_texture->width() ||
|
||||
buffer_height < render_target_texture->height())
|
||||
if (buffer_width > render_target_texture->width() ||
|
||||
buffer_height > render_target_texture->height())
|
||||
{
|
||||
// TODO: Should emit only once to avoid flooding the log file
|
||||
// TODO: Take AA scaling into account
|
||||
|
|
|
@ -3269,8 +3269,8 @@ void VKGSRender::flip(int buffer)
|
|||
buffer_width = rsx::apply_resolution_scale(buffer_width, true);
|
||||
buffer_height = rsx::apply_resolution_scale(buffer_height, true);
|
||||
|
||||
if (buffer_width < render_target_texture->width() ||
|
||||
buffer_height < render_target_texture->height())
|
||||
if (buffer_width > render_target_texture->width() ||
|
||||
buffer_height > render_target_texture->height())
|
||||
{
|
||||
// TODO: Should emit only once to avoid flooding the log file
|
||||
// TODO: Take AA scaling into account
|
||||
|
|
Loading…
Add table
Reference in a new issue