diff options
Diffstat (limited to 'main/loader-impl.cpp')
-rw-r--r-- | main/loader-impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/loader-impl.cpp b/main/loader-impl.cpp index ff1bb08f..4d40250a 100644 --- a/main/loader-impl.cpp +++ b/main/loader-impl.cpp @@ -64,7 +64,7 @@ std::shared_ptr<tile_atlas> loader_impl::tile_atlas(Containers::StringView name, Trade::ImageData2D loader_impl::tile_texture(Containers::StringView filename) { - if(!tga_importer || !tga_importer->openFile(filename)) { + if (!tga_importer || !tga_importer->openFile(filename)) { const auto path = Utility::Path::currentDirectory(); MESSAGE("note: current working directory: '%s'", path->data()); ABORT("can't open tile image '%s'", filename.cbegin()); |