You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
-Ability to debug video memory usage
-Small fix to xml saver (swapping > and <)
This commit is contained in:
@@ -2056,8 +2056,8 @@ Error ResourceFormatLoaderXML::rename_dependencies(const String &p_path,const Ma
|
||||
void ResourceFormatSaverXMLInstance::escape(String& p_str) {
|
||||
|
||||
p_str=p_str.replace("&","&");
|
||||
p_str=p_str.replace("<",">");
|
||||
p_str=p_str.replace(">","<");
|
||||
p_str=p_str.replace("<","<");
|
||||
p_str=p_str.replace(">",">");
|
||||
p_str=p_str.replace("'","'");
|
||||
p_str=p_str.replace("\"",""");
|
||||
for (char i=1;i<32;i++) {
|
||||
|
||||
Reference in New Issue
Block a user