mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Pass correct width to SNES_NTSC_OUT_WIDTH.
This commit is contained in:
parent
47a28b8fd4
commit
b02b6a1d62
@ -106,7 +106,7 @@ static void *blargg_ntsc_snes_composite_generic_create(unsigned in_fmt, unsigned
|
||||
static void blargg_ntsc_snes_composite_generic_output(void *data, unsigned *out_width, unsigned *out_height,
|
||||
unsigned width, unsigned height)
|
||||
{
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(256);
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(width);
|
||||
*out_height = height;
|
||||
}
|
||||
|
||||
|
@ -104,7 +104,7 @@ static void *blargg_ntsc_snes_rf_generic_create(unsigned in_fmt, unsigned out_fm
|
||||
static void blargg_ntsc_snes_rf_generic_output(void *data, unsigned *out_width, unsigned *out_height,
|
||||
unsigned width, unsigned height)
|
||||
{
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(256);
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(width);
|
||||
*out_height = height;
|
||||
}
|
||||
|
||||
|
@ -104,7 +104,7 @@ static void *blargg_ntsc_snes_rgb_generic_create(unsigned in_fmt, unsigned out_f
|
||||
static void blargg_ntsc_snes_rgb_generic_output(void *data, unsigned *out_width, unsigned *out_height,
|
||||
unsigned width, unsigned height)
|
||||
{
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(256);
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(width);
|
||||
*out_height = height;
|
||||
}
|
||||
|
||||
|
@ -104,7 +104,7 @@ static void *blargg_ntsc_snes_svideo_generic_create(unsigned in_fmt, unsigned ou
|
||||
static void blargg_ntsc_snes_svideo_generic_output(void *data, unsigned *out_width, unsigned *out_height,
|
||||
unsigned width, unsigned height)
|
||||
{
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(256);
|
||||
*out_width = SNES_NTSC_OUT_WIDTH(width);
|
||||
*out_height = height;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user