Utility/STBSaver: Fix error message

Former-commit-id: 358a92a83c014a568619d3847f0121b69156e74a [formerly 768526f91a496057df86b46e84b5d3adc9c2ad67]
Former-commit-id: 4fcccfc4c912293f7407795017c3175384bfb066
This commit is contained in:
Lynix 2016-07-08 08:36:54 +02:00
parent f9901561ac
commit ef3a356f7e
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ namespace Nz
ImageType type = image.GetType(); ImageType type = image.GetType();
if (type != ImageType_1D && type != ImageType_2D) if (type != ImageType_1D && type != ImageType_2D)
{ {
NazaraError("Image type 0x" + String::Number(type, 16) + " is not "); NazaraError("Image type 0x" + String::Number(type, 16) + " is not in a supported format");
return false; return false;
} }