Fixed critical issue where a label/macro with more than 255 refs would vanish
This commit is contained in:
parent
8d092bf1bc
commit
8d14b4bbc6
|
@ -19,13 +19,13 @@ typedef unsigned short Uint16;
|
|||
|
||||
typedef struct {
|
||||
char name[64], items[128][64];
|
||||
Uint8 len, refs;
|
||||
Uint8 len;
|
||||
Uint16 refs;
|
||||
} Macro;
|
||||
|
||||
typedef struct {
|
||||
char name[64];
|
||||
Uint8 refs;
|
||||
Uint16 addr;
|
||||
Uint16 addr, refs;
|
||||
} Label;
|
||||
|
||||
typedef struct {
|
||||
|
|
Loading…
Reference in New Issue