Disable some floating label errors until they can be addressed

They don't seem to cause any visible problems, but still shouldn't
be happening.
This commit is contained in:
Tommy 2022-07-16 14:41:38 +12:00
parent 269f0c4f5b
commit 7b9474d89f

View file

@ -135,7 +135,8 @@ bool floating_label::create_texture()
const int sf = ps * display::get_singleton()->get_zoom_factor();
if(foreground == nullptr) {
ERR_FT << "could not create floating label's text" << endl;
// TODO: draw_manager - find what triggers this and fix it
//ERR_FT << "could not create floating label's text" << endl;
return false;
}
@ -197,7 +198,8 @@ void floating_label::update(int time)
}
if(!create_texture()) {
ERR_FT << "failed to create texture for floating label" << std::endl;
// TODO: draw_manager - find what triggers this and fix it
//ERR_FT << "failed to create texture for floating label" << std::endl;
return;
}