From e398d127d4a43fd10434aa7e096e3ea1999a5a30 Mon Sep 17 00:00:00 2001 From: dzaima Date: Sat, 24 May 2025 16:40:09 +0300 Subject: [PATCH] fix comment --- src/vm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm.h b/src/vm.h index 97a08437..b8270326 100644 --- a/src/vm.h +++ b/src/vm.h @@ -216,7 +216,7 @@ B m_md2Block(Block* bl, Scope* psc); 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; } Env; extern GLOBAL Env* envCurr;