From 9645b10ed618b64981cfc10ef3f741f31eeac9de Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Thu, 20 Sep 2018 15:11:01 +0100 Subject: [PATCH] Add paletted texture to the supported extensions --- GL/state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GL/state.c b/GL/state.c index 802068f..7ce4863 100644 --- a/GL/state.c +++ b/GL/state.c @@ -601,7 +601,7 @@ const GLbyte *glGetString(GLenum name) { return "GLdc 1.x"; case GL_EXTENSIONS: - return "GL_ARB_framebuffer_object, GL_ARB_multitexture, GL_ARB_texture_rg"; + return "GL_ARB_framebuffer_object, GL_ARB_multitexture, GL_ARB_texture_rg, GL_EXT_paletted_texture"; } return "GL_KOS_ERROR: ENUM Unsupported\n";