From 67db6d18575728140b482b710acc6be1eefaddd0 Mon Sep 17 00:00:00 2001 From: myT <> Date: Fri, 7 Feb 2025 18:33:05 +0100 Subject: [PATCH] fixed shader editor auto-completion crash matches were gathered across multiple tokens --- code/renderer/tr_gui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/renderer/tr_gui.cpp b/code/renderer/tr_gui.cpp index d6191b1..dfb95fd 100644 --- a/code/renderer/tr_gui.cpp +++ b/code/renderer/tr_gui.cpp @@ -1744,7 +1744,7 @@ static bool AutoCompleteShaderKeyword(ShaderEditWindow& window, ImGuiInputTextCa const char* const token = Cmd_Argv(t); - if(t != tokenIndex) + if(t < tokenIndex) { // when not processing the selected token, we only accept exact matches for(int p = 0; p < patternCount; p++) @@ -1757,6 +1757,7 @@ static bool AutoCompleteShaderKeyword(ShaderEditWindow& window, ImGuiInputTextCa break; } } + continue; } // we're processing the selected token,