diff options
| author | Rémi Verschelde | 2017-12-05 21:14:29 +0100 |
|---|---|---|
| committer | GitHub | 2017-12-05 21:14:29 +0100 |
| commit | 9a96a2a06e2daacdcd90469c33e8f5f6dafa6958 (patch) | |
| tree | 4069a4c5cee9ec31f9d2f5e888b2c31479921e73 /modules/squish/image_compress_squish.cpp | |
| parent | 1587f45c2551a43db2808f2c5938095e19f060d2 (diff) | |
| parent | fd1b94e307fadcb5a28d067e2bfac90fb8d55328 (diff) | |
| download | godot-9a96a2a06e2daacdcd90469c33e8f5f6dafa6958.tar.gz godot-9a96a2a06e2daacdcd90469c33e8f5f6dafa6958.tar.zst godot-9a96a2a06e2daacdcd90469c33e8f5f6dafa6958.zip | |
Merge pull request #14000 from mhilbrunner/issue-13950
Improve slang, especially in user-visible parts. Closes #13950.
Diffstat (limited to '')
| -rw-r--r-- | modules/squish/image_compress_squish.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/squish/image_compress_squish.cpp b/modules/squish/image_compress_squish.cpp index 072f18b99..ac436c3c2 100644 --- a/modules/squish/image_compress_squish.cpp +++ b/modules/squish/image_compress_squish.cpp @@ -64,7 +64,7 @@ void image_decompress_squish(Image *p_image) { } else if (p_image->get_format() == Image::FORMAT_RGTC_RG) { squish_flags = squish::kBc5; } else { - print_line("wtf askd to decompress.. " + itos(p_image->get_format())); + print_line("Can't decompress unknown format: " + itos(p_image->get_format())); ERR_FAIL_COND(true); return; } |
