fixed shader editor auto-completion crash

matches were gathered across multiple tokens
This commit is contained in:
myT 2025-02-07 18:33:05 +01:00
parent b37b542b89
commit 67db6d1857

View file

@ -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,