1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Prevent shader crash when name conflict with "dus" and "__" occured

This commit is contained in:
Yuri Roubinsky
2020-02-01 12:34:02 +03:00
parent 188dc714b0
commit 2c4367441c

View File

@@ -662,6 +662,8 @@ ShaderLanguage::Token ShaderLanguage::_get_token() {
idx++;
}
str = str.replace("dus_", "_");
return _make_token(TK_IDENTIFIER, str);
}