mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-04-05 09:00:51 +00:00
fixed shader editor auto-completion crash
matches were gathered across multiple tokens
This commit is contained in:
parent
b37b542b89
commit
67db6d1857
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue