Remove debug messages
This commit is contained in:
parent
51699740ab
commit
985a58b112
@ -1259,14 +1259,11 @@ public:
|
|||||||
void setTextColor( Font &font, const std::string &color = "FFFFFF",
|
void setTextColor( Font &font, const std::string &color = "FFFFFF",
|
||||||
const std::string &outline_color = "000000",
|
const std::string &outline_color = "000000",
|
||||||
int outline_size = -1) {
|
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 );
|
setTexture( font, _text, color, outline_color, outline_size );
|
||||||
updateDstRect();
|
updateDstRect();
|
||||||
}
|
}
|
||||||
void changeText( const std::string &text ) {
|
void changeText( const std::string &text ) {
|
||||||
std::cout << _text << std::endl;
|
|
||||||
_text = text;
|
_text = text;
|
||||||
std::cout << _text << std::endl;
|
|
||||||
}
|
}
|
||||||
void setFlags( int flags ) {
|
void setFlags( int flags ) {
|
||||||
position_flags = flags;
|
position_flags = flags;
|
||||||
|
Loading…
Reference in New Issue
Block a user