Skip to content

Commit 354fb78

Browse files
committed
loader: ficl: restore isvirtualized?
This word was accidentally removed when gfx bindings were made optional to remove some overhead not needed for all loaders. This one isn't graphics related, so we can safely restore it without irritating anyone. Reported by: sjg Reviewed by: adrian, imp Fixes: 9c8bf69 ("loader: Only create gfx 4th bindings when [...]")
1 parent 991ed10 commit 354fb78

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

stand/ficl/loader.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,9 @@ void ficlCompilePlatform(FICL_SYSTEM *pSys)
864864
dictAppendWord(dp, "ccall", ficlCcall, FW_DEFAULT);
865865
dictAppendWord(dp, "uuid-from-string", ficlUuidFromString, FW_DEFAULT);
866866
dictAppendWord(dp, "uuid-to-string", ficlUuidToString, FW_DEFAULT);
867+
#ifndef TESTMAIN
868+
dictAppendWord(dp, "isvirtualized?", ficlIsvirtualizedQ, FW_DEFAULT);
869+
#endif
867870

868871
SET_FOREACH(fnpp, X4th_compile_set)
869872
(*fnpp)(pSys);

0 commit comments

Comments
 (0)