mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 13:41:45 +00:00
comments should count as lines
This commit is contained in:
parent
8807af9109
commit
d4f95da062
1 changed files with 3 additions and 0 deletions
|
@ -127,6 +127,9 @@ u8 nextToken(char** inPtr, void** val) {
|
||||||
|
|
||||||
while (*in && *in != '\n')
|
while (*in && *in != '\n')
|
||||||
in++;
|
in++;
|
||||||
|
|
||||||
|
lineNumber++;
|
||||||
|
scriptCurrentLine = lineNumber;
|
||||||
}
|
}
|
||||||
else if (isValidWord(*in)) {
|
else if (isValidWord(*in)) {
|
||||||
char* startWord = in;
|
char* startWord = in;
|
||||||
|
|
Loading…
Reference in a new issue