(Video processor) Change core option names

This commit is contained in:
twinaphex 2016-07-28 20:38:04 +02:00
parent 4f617071db
commit c578bc53ee

View File

@ -244,8 +244,8 @@ RETRO_API void VIDEOPROC_CORE_PREFIX(retro_set_environment)(retro_environment_t
enumerate_audio_devices(audio_devices, sizeof(audio_devices));
struct retro_variable envvars[] = {
{ "v4l2_videodev", video_devices },
{ "v4l2_audiodev", audio_devices },
{ "videoproc_videodev", video_devices },
{ "videoproc_audiodev", audio_devices },
{ NULL, NULL }
};
@ -283,8 +283,8 @@ RETRO_API void VIDEOPROC_CORE_PREFIX(retro_init)(void)
static bool open_devices(void)
{
struct retro_variable videodev = { "v4l2_videodev", NULL };
struct retro_variable audiodev = { "v4l2_audiodev", NULL };
struct retro_variable videodev = { "videoproc_videodev", NULL };
struct retro_variable audiodev = { "videoproc_audiodev", NULL };
struct v4l2_capability caps;
int error;