(SotFilters) outpitch was pre-shifted in render function for 32bpp

- set rgb565 equivalent to 16bpp shift
This commit is contained in:
twinaphex 2014-05-01 05:22:17 +02:00
parent 7959a85311
commit 068e2927aa

View File

@ -114,7 +114,7 @@ static void blargg_ntsc_snes_composite_render_rgb565(int width, int height,
return;
pitch >>= 1;
outpitch >>= 2;
outpitch >>= 1;
if(width <= 256)
snes_ntsc_blit(ntsc, input, pitch, burst, width, height, output, outpitch * 2, first, last);