Commit 70fa77b6 authored by Dylan Araps's avatar Dylan Araps

Faster math

parent 402abf90
......@@ -2329,7 +2329,7 @@ info() {
printf "%b%s\n" "${padding}${string}${reset}"
# Calculate info height
info_height="$((info_height + 1))"
info_height="$((info_height+=1))"
}
# }}}
......@@ -2364,7 +2364,7 @@ prin() {
printf "%b%s\n" "${padding}${string}${reset}"
# Calculate info height
info_height="$((info_height + 1))"
info_height="$((info_height+=1))"
}
# }}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment