From 90bea9ffa1aa58477f0457486cbffcf528e2f03a Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 14 Sep 2024 21:39:44 +0200 Subject: [PATCH] Fix typo. --- sfw/render_gui/imgui_impl_opengl3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfw/render_gui/imgui_impl_opengl3.cpp b/sfw/render_gui/imgui_impl_opengl3.cpp index 65acab8..cd2cdc2 100644 --- a/sfw/render_gui/imgui_impl_opengl3.cpp +++ b/sfw/render_gui/imgui_impl_opengl3.cpp @@ -178,7 +178,7 @@ // Vertex arrays are not supported on ES2/WebGL1 unless Emscripten which uses an extension #ifndef IMGUI_IMPL_OPENGL_ES2 -#idndef __APPLE__ +#ifndef __APPLE__ #define IMGUI_IMPL_OPENGL_USE_VERTEX_ARRAY #endif