Fix setting
This commit is contained in:
parent
34704a934a
commit
c4bd226d8f
5 changed files with 8 additions and 5 deletions
|
@ -37,7 +37,7 @@ void LCR_appendDataStr(const char *str)
|
|||
if (!dataFile)
|
||||
return;
|
||||
|
||||
if (*str == 0)
|
||||
if (str == 0 || *str == 0)
|
||||
rewind(dataFile);
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue