diff options
author | sapier <Sapier at GMX dot net> | 2014-05-24 13:42:52 +0200 |
---|---|---|
committer | sapier <Sapier at GMX dot net> | 2014-05-24 13:42:52 +0200 |
commit | c1e297a90a984a9ae392607063d5511a15981e30 (patch) | |
tree | d6ded7867adb5747cd57e1afd58db08146089b44 | |
parent | b743dcb942eb1a88bce2968c08b114058738758b (diff) | |
download | minetest-c1e297a90a984a9ae392607063d5511a15981e30.tar.gz minetest-c1e297a90a984a9ae392607063d5511a15981e30.tar.bz2 minetest-c1e297a90a984a9ae392607063d5511a15981e30.zip |
Reduce log level for non npot2 texture warning message
-rw-r--r-- | src/tile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile.cpp b/src/tile.cpp index cff45dc76..310630b84 100644 --- a/src/tile.cpp +++ b/src/tile.cpp @@ -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; } |