mirror of
https://github.com/libretro/RetroArch
synced 2025-03-09 22:13:25 +00:00
Update config.
This commit is contained in:
parent
75d618140b
commit
4b9e46ff06
9
driver.c
9
driver.c
@ -66,15 +66,18 @@ static const video_driver_t *video_drivers[] = {
|
||||
#ifdef HAVE_XVIDEO
|
||||
&video_xvideo,
|
||||
#endif
|
||||
#ifdef HAVE_DYLIB
|
||||
&video_ext,
|
||||
#endif
|
||||
};
|
||||
|
||||
static const input_driver_t *input_drivers[] = {
|
||||
#ifdef HAVE_SDL
|
||||
&input_sdl,
|
||||
#endif
|
||||
//#ifdef HAVE_XVIDEO
|
||||
// &input_x,
|
||||
//#endif
|
||||
#ifdef HAVE_XVIDEO
|
||||
&input_x,
|
||||
#endif
|
||||
};
|
||||
|
||||
static void find_audio_driver(void)
|
||||
|
1
driver.h
1
driver.h
@ -157,6 +157,7 @@ extern const audio_driver_t audio_pulse;
|
||||
extern const video_driver_t video_gl;
|
||||
extern const video_driver_t video_xvideo;
|
||||
extern const video_driver_t video_sdl;
|
||||
extern const video_driver_t video_ext;
|
||||
extern const input_driver_t input_sdl;
|
||||
extern const input_driver_t input_x;
|
||||
////////////////////////////////////////////////
|
||||
|
@ -50,6 +50,9 @@ static void set_defaults(void)
|
||||
case VIDEO_SDL:
|
||||
def_video = "sdl";
|
||||
break;
|
||||
case VIDEO_EXT:
|
||||
def_video = "ext";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -5,6 +5,12 @@
|
||||
|
||||
#### Video
|
||||
|
||||
# Video driver to use. "gl", "xvideo", "sdl" or "ext" (external API driver)
|
||||
# video_driver = "gl"
|
||||
|
||||
# Path to external video driver using the SSNES driver API.
|
||||
# video_external_driver =
|
||||
|
||||
# Windowed xscale and yscale (Real x res: 224 * xscale * aspect_ratio, real y scale: 224 * xscale)
|
||||
# video_xscale = 3.0
|
||||
# video_yscale = 3.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user