From 4f47c636531a14e036d1a1047eaae3e26112f84e Mon Sep 17 00:00:00 2001 From: coderJeff Date: Mon, 24 Jul 2023 12:31:34 -0400 Subject: [PATCH] fbc: internal typo - '-gfx' -> '-fbgfx' --- src/compiler/fb.bas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/fb.bas b/src/compiler/fb.bas index 4bf99e7fe..8f9604128 100644 --- a/src/compiler/fb.bas +++ b/src/compiler/fb.bas @@ -1100,11 +1100,11 @@ sub fbAddLib(byval libname as zstring ptr) '' multithreading may have been set after fbgfx.bi was '' included, and we can't have both libs passed to the '' linker. We can end up linking to the non-threaded - '' version of fbgfx when we would expect the mt versoin + '' version of fbgfx when we would expect the mt version, '' and the linker won't complain even when both versions '' are passed. - '' Set the -gfx option to link to the gfx library + '' Set the -fbgfx option to link to the gfx library '' and the lib will be added in hAddDefaultLibs() fbSetOption( FB_COMPOPT_FBGFX, TRUE )