mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 03:10:22 +00:00
TINYGL: Fixed a bug caused by wrong branch exclusion
This commit is contained in:
parent
12f54643f7
commit
d2450c6de0
@ -518,7 +518,8 @@ const Common::Rect BlittingDrawCall::getDirtyRegion() const {
|
||||
} else {
|
||||
tglGetBlitImageSize(_image, blitWidth, blitHeight);
|
||||
}
|
||||
} else if (blitHeight == 0) {
|
||||
}
|
||||
if (blitHeight == 0) {
|
||||
if (_transform._sourceRectangle.height() != 0) {
|
||||
blitHeight = _transform._sourceRectangle.height();
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user