Add error checking for blank _title string
This commit is contained in:
parent
ae85dae6e9
commit
23629bc4cf
@ -122,6 +122,8 @@ void def_overlay::update_texture() {
|
||||
{ "Roboto_Mono/RobotoMono-Medium.ttf", 50 }), NULL, &tgt);
|
||||
|
||||
//show the current panel title (stored in _title)
|
||||
//if its blank, dont show anything
|
||||
if(!_title.empty()){
|
||||
TTF_SizeText(board::getFont({ "Roboto_Mono/RobotoMono-Medium.ttf", 50 }),
|
||||
_title.c_str(),
|
||||
&tgt.w, &tgt.h);
|
||||
@ -129,6 +131,7 @@ void def_overlay::update_texture() {
|
||||
SDL_RenderCopy(board::getRenderer(),
|
||||
board::getString(_title,
|
||||
{ "Roboto_Mono/RobotoMono-Medium.ttf", 50 }), NULL, &tgt);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user