diff options
| author | Johan Manuel | 2016-07-25 19:12:13 +0200 |
|---|---|---|
| committer | Johan Manuel | 2016-08-13 13:21:35 +0200 |
| commit | cec1c48a7e7bb9bdc2c6829fba9e269a97d1c8bc (patch) | |
| tree | 1ff78e16682330a66dc5fd031bc3aacf1aaa73bc /tools/editor/editor_import_export.cpp | |
| parent | f86176d20b75598de78f117c06f55ef193115fd6 (diff) | |
| download | godot-cec1c48a7e7bb9bdc2c6829fba9e269a97d1c8bc.tar.gz godot-cec1c48a7e7bb9bdc2c6829fba9e269a97d1c8bc.tar.zst godot-cec1c48a7e7bb9bdc2c6829fba9e269a97d1c8bc.zip | |
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.
Diffstat (limited to 'tools/editor/editor_import_export.cpp')
| -rw-r--r-- | tools/editor/editor_import_export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_import_export.cpp b/tools/editor/editor_import_export.cpp index 357d139c0..d90a17581 100644 --- a/tools/editor/editor_import_export.cpp +++ b/tools/editor/editor_import_export.cpp @@ -1441,7 +1441,7 @@ bool EditorExportPlatformPC::can_export(String *r_error) const { String err; bool valid=true; - if (use64 && (!exists_export_template(debug_binary64)) || !exists_export_template(release_binary64)) { + if (use64 && (!exists_export_template(debug_binary64) || !exists_export_template(release_binary64))) { valid=false; err="No 64 bits export templates found.\nDownload and install export templates.\n"; } |
