summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'riscos')
-rw-r--r--riscos/global_history.c4
-rw-r--r--riscos/hotlist.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/riscos/global_history.c b/riscos/global_history.c
index 28fd107ce..a6b43b863 100644
--- a/riscos/global_history.c
+++ b/riscos/global_history.c
@@ -213,7 +213,7 @@ void ro_gui_global_history_toolbar_click(button_bar_action action)
break;
case TOOLBAR_BUTTON_LAUNCH:
- history_global_launch_selected();
+ history_global_launch_selected(false);
break;
default:
@@ -352,7 +352,7 @@ bool ro_gui_global_history_menu_select(wimp_w w, wimp_i i, wimp_menu *menu,
history_global_collapse_addresses();
return true;
case TREE_SELECTION_LAUNCH:
- history_global_launch_selected();
+ history_global_launch_selected(false);
return true;
case TREE_SELECTION_DELETE:
history_global_delete_selected();
diff --git a/riscos/hotlist.c b/riscos/hotlist.c
index 3bb2c59e7..7c52d6d37 100644
--- a/riscos/hotlist.c
+++ b/riscos/hotlist.c
@@ -217,7 +217,7 @@ void ro_gui_hotlist_toolbar_click(button_bar_action action)
break;
case TOOLBAR_BUTTON_LAUNCH:
- hotlist_launch_selected();
+ hotlist_launch_selected(false);
break;
case TOOLBAR_BUTTON_CREATE:
@@ -365,7 +365,7 @@ bool ro_gui_hotlist_menu_select(wimp_w w, wimp_i i, wimp_menu *menu,
hotlist_edit_selected();
return true;
case TREE_SELECTION_LAUNCH:
- hotlist_launch_selected();
+ hotlist_launch_selected(false);
return true;
case TREE_SELECTION_DELETE:
hotlist_delete_selected();