From d9efa2b61e124d02ad8cbccdcb09b5a1db061260 Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Fri, 17 Nov 2023 08:35:50 -0500 Subject: [PATCH] Fix #15919 - Contentless support and populated content paths are not mutually exclusive in practice - It just looked that way because most cores that support contentless mode to date don't use softpatching very much --- runloop.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/runloop.c b/runloop.c index 2156564be1a3..25022c263197 100644 --- a/runloop.c +++ b/runloop.c @@ -4256,13 +4256,10 @@ static bool event_init_content( content_set_subsystem_info(); - /* If core is contentless, just initialise SRAM - * interface, otherwise fill all content-related - * paths */ if (flags & CONTENT_ST_FLAG_CORE_DOES_NOT_NEED_CONTENT) runloop_path_init_savefile_internal(runloop_st); - else - runloop_path_fill_names(); + + runloop_path_fill_names(); if (!content_init()) return false;