From 4cb783731693a656afd74a90ac8266f08a696fd3 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 20 Dec 2021 23:38:29 -0600 Subject: [PATCH] factor: fix using on windows. --- basis/windows/opengl32/opengl32.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/windows/opengl32/opengl32.factor b/basis/windows/opengl32/opengl32.factor index 2b91aeffb8..2ea4de493c 100644 --- a/basis/windows/opengl32/opengl32.factor +++ b/basis/windows/opengl32/opengl32.factor @@ -156,7 +156,7 @@ CONSTANT: WGL_TYPE_RGBA_FLOAT_ARB 0x21A0 "wglGetExtensionsStringARB" wglGetProcAddress >boolean ; : wgl-extensions ( hdc -- extensions ) - has-wglGetExtensionsStringARB? [ wglGetExtensionsStringARB words ] [ drop { } ] if ; + has-wglGetExtensionsStringARB? [ wglGetExtensionsStringARB split-words ] [ drop { } ] if ; : has-wgl-extensions? ( hdc extensions -- ? ) swap wgl-extensions [ member? ] curry all? ; -- 2.34.1