From d7cc4b460523abbe3a4ed85066939cf89df41080 Mon Sep 17 00:00:00 2001 From: louie Date: Wed, 30 Dec 2020 11:07:48 -0800 Subject: Fixed small graphical issue when loading from cache --- draw.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/draw.c b/draw.c index e3217d1..f82435d 100644 --- a/draw.c +++ b/draw.c @@ -90,6 +90,14 @@ int main(int argc, char **argv){ update_display(false); //update highlighting for loaded location + if(true_hover){ + i = e_hover; + true_hover = 0; + trav_col(g_hover); + switch_col(); + trav_col(i); + } + else trav_col(g_hover); update_display(true); //drawing is done, now run a while loop to receive input (ESC ends this loop) -- cgit