Merge branch 'optimizations/reduce-binarysize-remove-libstdc++' into optimizations/implement-zx0-compression

This commit is contained in:
Philippe Symons
2025-05-25 22:45:47 +02:00
3 changed files with 6 additions and 3 deletions

View File

@@ -735,6 +735,7 @@ bool run_conditional(int index)
// Here is most of the logic that drives what lines show up where. It's probably not the best way to code it, but it works
int game;
int lang;
bool ret;
switch (index)
{
@@ -896,7 +897,10 @@ bool run_conditional(int index)
return true;
case CMD_BOX_MENU:
return (box_viewer.box_main(party_data) == CONFIRM_BUTTON);
hide_text_box();
ret = (box_viewer.box_main(party_data) == CONFIRM_BUTTON);
show_text_box();
return ret;
case CMD_MYTHIC_MENU:
party_data.set_mythic_stabilization(yes_no_menu.button_main());