mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: Fix copypasta
This commit is contained in:
parent
5751b77688
commit
12b73c8bdc
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ namespace rsx
|
|||
|
||||
if (dst_dimensions.width == src_dimensions.width)
|
||||
{
|
||||
const auto optimal_height = std::max(dst_dimensions.width, src_dimensions.width);
|
||||
const auto optimal_height = std::max(dst_dimensions.height, src_dimensions.height);
|
||||
return { false, 0, dst_dimensions.width, optimal_height };
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue