Revert "Fix cursor move with wide glyphs" ref. #118

This reverts commit 400aa4492f.
This commit is contained in:
Bakkeby 2024-03-08 19:52:11 +01:00
parent cd37481bde
commit 3564593563
2 changed files with 3 additions and 7 deletions

4
st.h
View file

@ -152,8 +152,8 @@ typedef struct {
typedef struct {
Glyph attr; /* current char attributes */
int x; /* terminal column */
int y; /* terminal row */
int x;
int y;
char state;
} TCursor;