Reduce log level for non npot2 texture warning message

master
sapier 2014-05-24 13:42:52 +02:00
parent b743dcb942
commit c1e297a90a
1 changed files with 1 additions and 1 deletions

View File

@ -966,7 +966,7 @@ bool TextureSource::generateImage(std::string part_of_name, video::IImage *& bas
if ((dim.Height %2 != 0) ||
(dim.Width %2 != 0)) {
errorstream << "TextureSource::generateImage "
infostream << "TextureSource::generateImage "
<< part_of_name << " size npot2 x=" << dim.Width
<< " y=" << dim.Height << std::endl;
}