mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 16:34:15 +00:00
Fixed const array declaration values greater than 127
This commit is contained in:
parent
c3d670bb47
commit
658bb18b57
@ -48,7 +48,7 @@ int mbrsiz; //Member Size
|
|||||||
|
|
||||||
enum vtypes {VTVOID, VTREG, VTCHAR, VTINT, VTARRAY, VTSTRUCT}; //Variable Types
|
enum vtypes {VTVOID, VTREG, VTCHAR, VTINT, VTARRAY, VTSTRUCT}; //Variable Types
|
||||||
|
|
||||||
char datvar[DATASPC+1]; //Variable Data Storage
|
unsigned char datvar[DATASPC+1]; //Variable Data Storage
|
||||||
int datlen[MAXVAR+1]; //Variable Data Length
|
int datlen[MAXVAR+1]; //Variable Data Length
|
||||||
char dattyp[MAXVAR+1]; //Variable Data Type
|
char dattyp[MAXVAR+1]; //Variable Data Type
|
||||||
char dattmp[DATASPC+1]; //Variable Temporary Data
|
char dattmp[DATASPC+1]; //Variable Temporary Data
|
||||||
|
Loading…
Reference in New Issue
Block a user