Skip to content

Commit 02e932e

Browse files
committed
Allow full savestate support without info file
1 parent 129616b commit 02e932e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

core_info.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2125,6 +2125,11 @@ static core_info_list_t *core_info_list_new(const char *path,
21252125
config_file_free(conf);
21262126
}
21272127

2128+
/* Start with 'full' savestate support when info is missing */
2129+
if (!conf)
2130+
info->savestate_support_level =
2131+
CORE_INFO_SAVESTATE_DETERMINISTIC;
2132+
21282133
/* Get fallback display name, if required */
21292134
if (!info->display_name)
21302135
info->display_name = strdup(core_filename);

0 commit comments

Comments
 (0)