Browse Source

Fix #20564 HDR import fail

Token has extra "0" at the end so it fail condition checking.
Unknown 7 years ago
parent
commit
7fbb826422
1 changed files with 0 additions and 1 deletions
  1. 0 1
      core/os/file_access.cpp

+ 0 - 1
core/os/file_access.cpp

@@ -270,7 +270,6 @@ String FileAccess::get_token() const {
 		c = get_8();
 	}
 
-	token += '0';
 	return String::utf8(token.get_data());
 }