mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix segfault on startup error on Android
This commit is contained in:
parent
0fdf24d64a
commit
540071002e
2 changed files with 5 additions and 3 deletions
|
@ -177,9 +177,11 @@ void AutoHideButtonBar::init(ISimpleTextureSource* tsrc,
|
||||||
|
|
||||||
AutoHideButtonBar::~AutoHideButtonBar()
|
AutoHideButtonBar::~AutoHideButtonBar()
|
||||||
{
|
{
|
||||||
|
if (m_starter.guibutton) {
|
||||||
m_starter.guibutton->setVisible(false);
|
m_starter.guibutton->setVisible(false);
|
||||||
m_starter.guibutton->drop();
|
m_starter.guibutton->drop();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void AutoHideButtonBar::addButton(touch_gui_button_id button_id,
|
void AutoHideButtonBar::addButton(touch_gui_button_id button_id,
|
||||||
const wchar_t* caption, const char* btn_image)
|
const wchar_t* caption, const char* btn_image)
|
||||||
|
|
|
@ -75,7 +75,7 @@ struct button_info {
|
||||||
float repeatdelay;
|
float repeatdelay;
|
||||||
irr::EKEY_CODE keycode;
|
irr::EKEY_CODE keycode;
|
||||||
std::vector<int> ids;
|
std::vector<int> ids;
|
||||||
IGUIButton* guibutton;
|
IGUIButton* guibutton = NULL;
|
||||||
bool immediate_release;
|
bool immediate_release;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue