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:	9c8bf69a53 ("loader: Only create gfx 4th bindings when [...]")
This commit is contained in:
Kyle Evans 2025-05-07 23:04:17 -05:00
parent 991ed10e39
commit 354fb783e6

View file

@ -864,6 +864,9 @@ void ficlCompilePlatform(FICL_SYSTEM *pSys)
dictAppendWord(dp, "ccall", ficlCcall, FW_DEFAULT);
dictAppendWord(dp, "uuid-from-string", ficlUuidFromString, FW_DEFAULT);
dictAppendWord(dp, "uuid-to-string", ficlUuidToString, FW_DEFAULT);
#ifndef TESTMAIN
dictAppendWord(dp, "isvirtualized?", ficlIsvirtualizedQ, FW_DEFAULT);
#endif
SET_FOREACH(fnpp, X4th_compile_set)
(*fnpp)(pSys);