diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-21 19:31:23 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-21 20:41:07 +0200 |
commit | 6361e24f29ae735b75bcd27f9fe521397ce7c10c (patch) | |
tree | 74eefddaf3213579181f2945b59427f15b33e3ae /core/image.cpp | |
parent | 393daf05025bd8076ec01eb754d1145dbb12edc5 (diff) | |
download | redot-engine-6361e24f29ae735b75bcd27f9fe521397ce7c10c.tar.gz |
Cleanup unnecessary debug prints
Diffstat (limited to 'core/image.cpp')
-rw-r--r-- | core/image.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/image.cpp b/core/image.cpp index 943cbaf51d..42684e7ea7 100644 --- a/core/image.cpp +++ b/core/image.cpp @@ -1061,7 +1061,6 @@ Error Image::generate_mipmaps() { int size = _get_dst_image_size(width, height, format, mmcount); data.resize(size); - print_line("to gen mipmaps w " + itos(width) + " h " + itos(height) + " format " + get_format_name(format) + " mipmaps " + itos(mmcount) + " new size is: " + itos(size)); PoolVector<uint8_t>::Write wp = data.write(); |