diff options
author | lupoDharkael <izhe@hotmail.es> | 2018-10-14 23:34:53 +0200 |
---|---|---|
committer | lupoDharkael <izhe@hotmail.es> | 2018-10-14 23:34:53 +0200 |
commit | 039e3e295a85b0c6b93401fe70cf68d64ea309d3 (patch) | |
tree | 5dc1dcf6ac453865c4696f04fffe5eed160b6ad0 /modules | |
parent | b95f0e61e0e5678eeb9224a012b28479d7f0af58 (diff) |
GDScriptTokenizer: Fix token_names order
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gdscript_tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_tokenizer.cpp b/modules/gdscript/gdscript_tokenizer.cpp index 77e1b7290e..c37142b3c1 100644 --- a/modules/gdscript/gdscript_tokenizer.cpp +++ b/modules/gdscript/gdscript_tokenizer.cpp @@ -128,8 +128,8 @@ const char *GDScriptTokenizer::token_names[TK_MAX] = { "'.'", "'?'", "':'", - "'->'", "'$'", + "'->'", "'\\n'", "PI", "TAU", |