You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Fix various warnings
The warnings fixed were about things like unused variables, misleading indentation, missing default cases in switches and better grouping of conditions in if statements.
This commit is contained in:
@@ -784,7 +784,7 @@ bool EditorNode::_find_and_save_resource(RES res,Map<RES,bool>& processed,int32_
|
||||
if (changed || subchanged) {
|
||||
//save
|
||||
print_line("Also saving modified external resource: "+res->get_path());
|
||||
Error err = ResourceSaver::save(res->get_path(),res,flags);
|
||||
ResourceSaver::save(res->get_path(),res,flags);
|
||||
|
||||
}
|
||||
processed[res]=false; //because it's a file
|
||||
|
||||
Reference in New Issue
Block a user