From 3d7cd77982d79ff798a92ebe7f3c0b2a52042cdf Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 8 Feb 2014 22:43:54 +0000 Subject: Simplify local history interface. --- atari/toolbar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'atari/toolbar.c') diff --git a/atari/toolbar.c b/atari/toolbar.c index f40c07a65..9a49fbfea 100644 --- a/atari/toolbar.c +++ b/atari/toolbar.c @@ -948,7 +948,7 @@ void toolbar_back_click(struct s_toolbar *tb) assert(bw != NULL); if( history_back_available(bw->history) ) - history_back(bw, bw->history); + history_back(bw->history, false); } void toolbar_reload_click(struct s_toolbar *tb) @@ -975,7 +975,7 @@ void toolbar_forward_click(struct s_toolbar *tb) assert(bw != NULL); if (history_forward_available(bw->history)) - history_forward(bw, bw->history); + history_forward(bw->history, false); } void toolbar_home_click(struct s_toolbar *tb) -- cgit v1.2.3