mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-17 01:31:25 +00:00
Fix compile error
This commit is contained in:
parent
a4ca7cfb8d
commit
0fd964ec4f
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ bool FStringTable::readMacros(int lumpnum)
|
||||||
bool FStringTable::ParseLanguageCSV(int lumpnum, const TArray<uint8_t> &buffer)
|
bool FStringTable::ParseLanguageCSV(int lumpnum, const TArray<uint8_t> &buffer)
|
||||||
{
|
{
|
||||||
if (buffer.Size() < 11) return false;
|
if (buffer.Size() < 11) return false;
|
||||||
if (strnicmp(buffer.Data(), "default,", 8) && strnicmp(buffer.Data(), "identifier,", 11 ) return false;
|
if (strnicmp((const char*)buffer.Data(), "default,", 8) && strnicmp((const char*)buffer.Data(), "identifier,", 11 )) return false;
|
||||||
auto data = parseCSV(buffer);
|
auto data = parseCSV(buffer);
|
||||||
|
|
||||||
int labelcol = -1;
|
int labelcol = -1;
|
||||||
|
|
Loading…
Reference in a new issue