mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 13:14:04 +00:00
Merge pull request #7445 from Tatsuya79/patch-6
Menu driver fallback: don't change menu for null video driver
This commit is contained in:
commit
b804c087fe
@ -2362,7 +2362,8 @@ static bool check_menu_driver_compatibility(void)
|
||||
char *menu_driver = settings->arrays.menu_driver;
|
||||
|
||||
if (string_is_equal (menu_driver, "rgui") ||
|
||||
string_is_equal(menu_driver, "null"))
|
||||
string_is_equal(menu_driver, "null") ||
|
||||
string_is_equal(video_driver, "null"))
|
||||
return true;
|
||||
|
||||
/* TODO/FIXME - maintenance hazard */
|
||||
|
Loading…
x
Reference in New Issue
Block a user