Fixed a bug in FuncStrAt. New shortcut function GenLiteral0().

git-svn-id: svn://svn.cc65.org/cc65/trunk@3605 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-08-30 19:40:43 +00:00
parent 98f4a339ba
commit 476e3f9acc
3 changed files with 19 additions and 9 deletions

View File

@@ -59,7 +59,7 @@ void DoEnum (void)
{
/* Start at zero */
long Offs = 0;
ExprNode* BaseExpr = GenLiteralExpr (0);
ExprNode* BaseExpr = GenLiteral0 ();
/* Check for a name */
int Anon = (Tok != TOK_IDENT);