From: Lukáš Jiřiště Date: Thu, 19 Dec 2024 08:52:25 +0000 (+0100) Subject: Fix switch symbols for opening X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=01694a4391af1e76969b777b1a8b8517c618fe0d;p=FET_sim.git Fix switch symbols for opening I have swapped the vertical and horizontal line. --- diff --git a/src/colors.c b/src/colors.c index 5298d5a..d7be7eb 100644 --- a/src/colors.c +++ b/src/colors.c @@ -65,13 +65,13 @@ static t_switch_symbol_set get_switch_set(t_orientation orientation) if (orientation == UP || orientation == DOWN) { - set.open = ACS_VLINE; + set.open = ACS_HLINE; set.transition = '/'; set.closed = '|'; } else { - set.open = ACS_HLINE; + set.open = ACS_VLINE; set.transition = '\\'; set.closed = '-'; }