From: Thomas Debesse Date: Thu, 25 Feb 2021 13:58:22 +0000 (+0100) Subject: netradiant: dds/ prefix, use makeQuoted() in log printing X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=commitdiff_plain;h=2baabe14fbecf9fe43f4ef0ddab4cbdc7b20e015 netradiant: dds/ prefix, use makeQuoted() in log printing --- diff --git a/radiant/image.cpp b/radiant/image.cpp index 5f16c01a..9d74d348 100644 --- a/radiant/image.cpp +++ b/radiant/image.cpp @@ -61,7 +61,7 @@ public: if ( file != 0 ) { // tell user which image file is found for the given texture path - globalOutputStream() << "Found image file: \"" << fullname.c_str() << "\"\n"; + globalOutputStream() << "Found image file: " << makeQuoted( fullname.c_str() ) << "\n"; m_image = table.loadImage( *file ); file->release();