diff --git a/retroarch.cfg b/retroarch.cfg index e24878a020..d3ccda73eb 100644 --- a/retroarch.cfg +++ b/retroarch.cfg @@ -102,7 +102,7 @@ # Which OpenGL context implementation to use. # Possible ones for desktop are: glx, x-egl, kms-egl, sdl-gl, wgl. # By default, tries to use first suitable driver. -# video_gl_context = +# video_context_driver = # Windowed x resolution scale and y resolution scale # (Real x res: base_size * xscale * aspect_ratio, real y res: base_size * yscale) diff --git a/settings.c b/settings.c index c055cc90c4..e83d6c62c6 100644 --- a/settings.c +++ b/settings.c @@ -1021,7 +1021,7 @@ static bool config_load_file(const char *path, bool set_defaults) #ifdef HAVE_MENU CONFIG_GET_STRING(menu.driver, "menu_driver"); #endif - CONFIG_GET_STRING(video.gl_context, "video_gl_context"); + CONFIG_GET_STRING(video.gl_context, "video_context_driver"); CONFIG_GET_STRING(audio.driver, "audio_driver"); CONFIG_GET_PATH(video.softfilter_plugin, "video_filter"); CONFIG_GET_PATH(audio.dsp_plugin, "audio_dsp_plugin"); diff --git a/settings_data.c b/settings_data.c index a92707352c..e2596f5f43 100644 --- a/settings_data.c +++ b/settings_data.c @@ -3163,7 +3163,7 @@ static bool setting_data_append_list_driver_options( #ifdef HAVE_OPENGL CONFIG_STRING( g_settings.video.gl_context, - "video_context", + "video_context_driver", "Video Context Driver", "", group_info.name,