]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - parser.cpp
allow dots in frame names to compile hypnotic
[xonotic/gmqcc.git] / parser.cpp
index 8aa49f77bc76f1d96219c2b77d59641775eb6008..a59191c235ef70f29332cfac427e7bd83be727c6 100644 (file)
@@ -3913,7 +3913,7 @@ static bool parse_function_body(parser_t *parser, ast_value *var)
 
         framenum = parse_expression_leave(parser, true, false, false);
         if (!framenum) {
-            parseerror(parser, "expected a framenumber constant in[frame,think] notation");
+            parseerror(parser, "expected a framenumber constant in [frame,think] notation");
             return false;
         }
         if (!ast_istype(framenum, ast_value) || !( (ast_value*)framenum )->m_hasvalue) {