diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-06 23:43:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 23:43:06 +0200 |
commit | 8f033f1d19ee9150558a4acdf2efcb13cf1b831b (patch) | |
tree | 0177dbbb97f6145ce7810a72436f7bfeb0c76b18 /editor/import/resource_importer_texture.cpp | |
parent | cb1f041783348294f4c64b0d3a988989edf94117 (diff) | |
parent | f2a0a526ef415f24204fce4c9bfc609d8874199a (diff) |
Merge pull request #60299 from Calinou/editor-vram-compress-pc-improve-warning
Diffstat (limited to 'editor/import/resource_importer_texture.cpp')
-rw-r--r-- | editor/import/resource_importer_texture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/import/resource_importer_texture.cpp b/editor/import/resource_importer_texture.cpp index deb3047864..0eed6184c0 100644 --- a/editor/import/resource_importer_texture.cpp +++ b/editor/import/resource_importer_texture.cpp @@ -597,7 +597,7 @@ Error ResourceImporterTexture::import(const String &p_source_file, const String } if (!ok_on_pc) { - EditorNode::add_io_error(TTR("Warning, no suitable PC VRAM compression enabled in Project Settings. This texture will not display correctly on PC.")); + EditorNode::add_io_error(vformat(TTR("%s: No suitable desktop VRAM compression algorithm enabled in Project Settings (S3TC or BPTC). This texture may not display correctly on desktop platforms."), p_source_file)); } } else { //import normally |