Fix setting

This commit is contained in:
Miloslav Ciz 2025-03-10 21:05:40 +01:00
parent 34704a934a
commit c4bd226d8f
5 changed files with 8 additions and 5 deletions

View file

@ -37,7 +37,7 @@ void LCR_appendDataStr(const char *str)
if (!dataFile)
return;
if (*str == 0)
if (str == 0 || *str == 0)
rewind(dataFile);
else
{