Bug fix to sync video driver selection on GTK GUI at init.

This commit is contained in:
Matthew Budd 2020-08-09 05:21:29 -04:00
parent 989d39c26e
commit 61894c7772
1 changed files with 1 additions and 1 deletions

View File

@ -1052,7 +1052,7 @@ void openVideoConfig (void)
// sync with cfg
int buf;
g_config->getOption ("SDL.SpecialFilter", &buf);
g_config->getOption ("SDL.VideoDriver", &buf);
gtk_combo_box_set_active (GTK_COMBO_BOX (DriverCombo), buf);
g_signal_connect (DriverCombo, "changed", G_CALLBACK (setVideoDriver), NULL);