From 985a58b1128627d0f0a2366bf22db96d3d610a14 Mon Sep 17 00:00:00 2001 From: zvon Date: Fri, 11 Sep 2020 21:38:33 +0200 Subject: [PATCH] Remove debug messages --- sdlpp.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/sdlpp.hpp b/sdlpp.hpp index 8af1edf..2f25ac4 100644 --- a/sdlpp.hpp +++ b/sdlpp.hpp @@ -1259,14 +1259,11 @@ public: void setTextColor( Font &font, const std::string &color = "FFFFFF", const std::string &outline_color = "000000", int outline_size = -1) { - std::cout << "TEXT: " << _text << ", COLOR: " << color << ", OUTLINE_COLOR: " << outline_color << ", OUTLINE_SIZE: " << outline_size << std::endl; setTexture( font, _text, color, outline_color, outline_size ); updateDstRect(); } void changeText( const std::string &text ) { - std::cout << _text << std::endl; _text = text; - std::cout << _text << std::endl; } void setFlags( int flags ) { position_flags = flags;