mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 18:58:21 +00:00
(SotFilters) outpitch was pre-shifted in render function for 32bpp
- set rgb565 equivalent to 16bpp shift
This commit is contained in:
parent
7959a85311
commit
068e2927aa
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user