1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-07-03 05:29:30 +00:00

Increase max frame size to 255

This commit is contained in:
David Schmenk 2014-11-06 14:39:20 -08:00
parent 8faa0ff8a3
commit 8125949370

View File

@ -90,7 +90,7 @@ int idconst_add(char *name, int len, int value)
int idlocal_add(char *name, int len, int type, int size)
{
char c = name[len];
if (localsize > 254)
if (localsize > 255)
{
printf("Local variable size overflow\n");
return (0);