Reduce log level for non npot2 texture warning message
parent
b743dcb942
commit
c1e297a90a
|
@ -966,7 +966,7 @@ bool TextureSource::generateImage(std::string part_of_name, video::IImage *& bas
|
||||||
|
|
||||||
if ((dim.Height %2 != 0) ||
|
if ((dim.Height %2 != 0) ||
|
||||||
(dim.Width %2 != 0)) {
|
(dim.Width %2 != 0)) {
|
||||||
errorstream << "TextureSource::generateImage "
|
infostream << "TextureSource::generateImage "
|
||||||
<< part_of_name << " size npot2 x=" << dim.Width
|
<< part_of_name << " size npot2 x=" << dim.Width
|
||||||
<< " y=" << dim.Height << std::endl;
|
<< " y=" << dim.Height << std::endl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue