fix comment

This commit is contained in:
dzaima 2025-05-24 16:40:09 +03:00
parent fd58b87e61
commit e398d127d4

View File

@ -216,7 +216,7 @@ B m_md2Block(Block* bl, Scope* psc);
typedef struct Env { typedef struct Env {
u64 pos; // if top bit set, ((u32)pos)>>1 is an offset into bytecode; otherwise, it's a pointer in the bytecode u64 pos; // if (pos&1)!=0, ((u32)pos)>>1 is an offset into bytecode; otherwise, it's a pointer in the bytecode
Scope* sc; Scope* sc;
} Env; } Env;
extern GLOBAL Env* envCurr; extern GLOBAL Env* envCurr;