Remove c_str() calls made redundant by the previous commit

This commit is contained in:
2014-04-15 21:18:36 -04:00
parent f91ca72631
commit 6060ba6750
8 changed files with 22 additions and 23 deletions

View File

@@ -102,10 +102,10 @@ void cTextMsg::draw(){
TEXT.colour = draw_color;
if (to_rect.bottom - to_rect.top < 20) { // essentially, it's a single line
to_rect.left += 3;
win_draw_string(*inWindow,to_rect,lbl.c_str(),3,12);
win_draw_string(*inWindow,to_rect,lbl,3,12);
}else {
to_rect.inset(4,4);
win_draw_string(*inWindow,to_rect,lbl.c_str(),0,textSize + 2);
win_draw_string(*inWindow,to_rect,lbl,0,textSize + 2);
}
}
}