use shitfucking stupid linebreaks so that our text files don't like stupid compact blobs in Notepad

(really, fuck Notepad)
This commit is contained in:
Arisotura 2021-05-06 00:40:11 +02:00
parent d3c298bbe4
commit 6f91bcc39f
2 changed files with 7 additions and 7 deletions

View File

@ -171,20 +171,20 @@ bool ARCodeFile::Save()
{
ARCodeCat& cat = *it;
if (it != Categories.begin()) fprintf(f, "\n");
fprintf(f, "CAT %s\n\n", cat.Name);
if (it != Categories.begin()) fprintf(f, "\r\n");
fprintf(f, "CAT %s\r\n\r\n", cat.Name);
for (ARCodeList::iterator jt = cat.Codes.begin(); jt != cat.Codes.end(); jt++)
{
ARCode& code = *jt;
fprintf(f, "CODE %d %s\n", code.Enabled, code.Name);
fprintf(f, "CODE %d %s\r\n", code.Enabled, code.Name);
for (u32 i = 0; i < code.CodeLen; i+=2)
{
fprintf(f, "%08X %08X\n", code.Code[i], code.Code[i+1]);
fprintf(f, "%08X %08X\r\n", code.Code[i], code.Code[i+1]);
}
fprintf(f, "\n");
fprintf(f, "\r\n");
}
}

View File

@ -173,9 +173,9 @@ void Save()
}
if (entry->Type == 0)
fprintf(f, "%s=%d\n", entry->Name, *(int*)entry->Value);
fprintf(f, "%s=%d\r\n", entry->Name, *(int*)entry->Value);
else
fprintf(f, "%s=%s\n", entry->Name, (char*)entry->Value);
fprintf(f, "%s=%s\r\n", entry->Name, (char*)entry->Value);
entry++;
}