Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

overlay: reinitializing was causing the wrong overlay to show #17331

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions input/input_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -5280,6 +5280,9 @@ static const char *input_overlay_path(bool want_osk)
/* if there's an override, use it */
if (retroarch_override_setting_is_set(RARCH_OVERRIDE_SETTING_OVERLAY_PRESET, NULL))
return settings->paths.path_overlay;
/* if there's no core, just return the default */
if (string_is_empty(path_get(RARCH_PATH_CORE)))
return settings->paths.path_overlay;

/* let's go hunting */
fill_pathname_expand_special(overlay_directory,
Expand Down
Loading