We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dd6e85 commit 7161069Copy full SHA for 7161069
1 file changed
input/input_driver.c
@@ -5280,6 +5280,9 @@ static const char *input_overlay_path(bool want_osk)
5280
/* if there's an override, use it */
5281
if (retroarch_override_setting_is_set(RARCH_OVERRIDE_SETTING_OVERLAY_PRESET, NULL))
5282
return settings->paths.path_overlay;
5283
+ /* if there's no core, just return the default */
5284
+ if (string_is_empty(path_get(RARCH_PATH_CORE)))
5285
+ return settings->paths.path_overlay;
5286
5287
/* let's go hunting */
5288
fill_pathname_expand_special(overlay_directory,
0 commit comments