fixes line numbering in CONs

git-svn-id: https://svn.eduke32.com/eduke32@1616 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2010-03-14 15:49:03 +00:00
parent 3515f603af
commit 36564f5070

View file

@ -1181,7 +1181,7 @@ static int32_t C_SetScriptSize(int32_t size)
static inline int32_t ispecial(const char c)
{
if (c == ' ' || c == 0x0d || c == '(' || c == ')' ||
c == ',' || c == ';' || (c == 0x0a && ++g_lineNumber))
c == ',' || c == ';' || (c == 0x0a /*&& ++g_lineNumber*/))
return 1;
return 0;