summaryrefslogtreecommitdiff
path: root/editor/editor_file_system.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-01-26 22:35:31 +0100
committerRémi Verschelde <rverschelde@gmail.com>2019-01-26 22:35:31 +0100
commitc3b0ee59412f16427194518f5261eeb7cf002606 (patch)
tree65a5e59cf4a70bde2c43562cd821cc90f772bde6 /editor/editor_file_system.cpp
parent16fa7885109988df1a2cec2b1859d2658dfbcae8 (diff)
Fix code style issues
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r--editor/editor_file_system.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp
index d958ecebf6..fe8d57d1a1 100644
--- a/editor/editor_file_system.cpp
+++ b/editor/editor_file_system.cpp
@@ -1810,13 +1810,11 @@ EditorFileSystem::EditorFileSystem() {
da->make_dir("res://.import");
}
//this should probably also work on Unix and use the string it returns for FAT32
- using_fat_32 = da->get_filesystem_type()=="FAT32";
+ using_fat_32 = da->get_filesystem_type() == "FAT32";
memdelete(da);
scan_total = 0;
update_script_classes_queued = false;
-
-
}
EditorFileSystem::~EditorFileSystem() {