diff options
author | Joe <rbo@gmx.us> | 2024-01-29 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-29 20:20:20 +0100 |
commit | 6bfd76773258c8c05c345b0765bf487e2cc08fa7 (patch) | |
tree | 59222108cccd62613a4c91e1989d48fe2978296a /src/i_ui.go | |
parent | segv (diff) | |
download | hardflip-6bfd76773258c8c05c345b0765bf487e2cc08fa7.tar.gz hardflip-6bfd76773258c8c05c345b0765bf487e2cc08fa7.tar.bz2 hardflip-6bfd76773258c8c05c345b0765bf487e2cc08fa7.tar.xz hardflip-6bfd76773258c8c05c345b0765bf487e2cc08fa7.tar.zst hardflip-6bfd76773258c8c05c345b0765bf487e2cc08fa7.zip |
no segv
Diffstat (limited to 'src/i_ui.go')
-rw-r--r-- | src/i_ui.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/i_ui.go b/src/i_ui.go index 83cdf4d..9962df7 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -61,11 +61,11 @@ import ( ) type HardUI struct { - s tcell.Screen - mode uint8 - style [7]tcell.Style - dim [2]int - err [2]string + s tcell.Screen + mode uint8 + style [7]tcell.Style + dim [2]int + err [2]string } func i_left_right(text_len int, ui *HardUI) (int, int) { |