1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-28 16:07:14 +00:00

Some BRDF fixes

This commit is contained in:
Juan Linietsky
2016-12-21 14:20:35 -03:00
parent 72b844c349
commit 37f558cd7b
11 changed files with 95 additions and 20 deletions

View File

@@ -612,6 +612,8 @@ String String::get_slicec(CharType p_splitter, int p_slice) const {
if (p_slice==count) {
return substr(prev,i-prev);
} else if (c[i]==0) {
return String();
} else {
count++;
prev=i+1;