Fix save new config name when core loaded (#16458)

This commit is contained in:
sonninnos 2024-04-23 19:54:04 +03:00 committed by GitHub
parent 2b8c8f1145
commit fc6d251be9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1778,6 +1778,7 @@ bool command_event_save_core_config(
for (i = 0; i < 16; i++)
{
size_t _len = strlcpy(tmp, config_path, sizeof(tmp));
if (i)
_len += snprintf(tmp + _len, sizeof(tmp) - _len, "-%u", i);
strlcpy(tmp + _len, ".cfg", sizeof(tmp) - _len);