rsx: Typo fix

- This silly typo broke the flip improvements in the GT fixes PR
This commit is contained in:
kd-11 2018-12-30 17:43:40 +03:00 committed by kd-11
parent 2a62fa892b
commit c80c7f06bb
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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