Fix horizontal scaling of unfiltered Banshee/V3 overlay.
This commit is contained in:
parent
aef6ea93e6
commit
035f6b348c
1 changed files with 2 additions and 1 deletions
|
|
@ -1950,7 +1950,8 @@ static void banshee_overlay_draw(svga_t *svga, int displine)
|
|||
!(banshee->vidProcCfg & VIDPROCCFG_H_SCALE_ENABLE) && !(banshee->vidProcCfg & VIDPROCCFG_FILTER_MODE_DITHER_4X4) &&
|
||||
!(banshee->vidProcCfg & VIDPROCCFG_FILTER_MODE_DITHER_2X2));
|
||||
else
|
||||
skip_filtering = ((banshee->vidProcCfg & VIDPROCCFG_FILTER_MODE_MASK) != VIDPROCCFG_FILTER_MODE_BILINEAR);
|
||||
skip_filtering = ((banshee->vidProcCfg & VIDPROCCFG_FILTER_MODE_MASK) != VIDPROCCFG_FILTER_MODE_BILINEAR &&
|
||||
!(banshee->vidProcCfg & VIDPROCCFG_H_SCALE_ENABLE));
|
||||
|
||||
if (skip_filtering)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue