You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-31 18:41:20 +00:00
Fixes problem parsing config files using ConfigFile
This commit is contained in:
@@ -357,6 +357,7 @@ if (res!=-1 && res < min_pos) {\
|
||||
} break;
|
||||
case MIN_OPEN: {
|
||||
int level=1;
|
||||
end++;
|
||||
while(end<close_pos) {
|
||||
|
||||
if (str[end]=='[')
|
||||
@@ -373,6 +374,7 @@ if (res!=-1 && res < min_pos) {\
|
||||
} break;
|
||||
case MIN_CURLY_OPEN: {
|
||||
int level=1;
|
||||
end++;
|
||||
while(end<close_pos) {
|
||||
|
||||
if (str[end]=='{')
|
||||
|
||||
Reference in New Issue
Block a user