Browse Source

reduce size of each glyph for faster copy.

master
Aurélien Aptel 12 years ago
parent
commit
cee6ccc6ee
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      st.c

+ 4
- 4
st.c View File

@ -86,10 +86,10 @@ typedef unsigned long ulong;
typedef struct {
char c[UTF_SIZ]; /* character code */
char mode; /* attribute flags */
int fg; /* foreground */
int bg; /* background */
char state; /* state flags */
uchar mode; /* attribute flags */
uchar fg; /* foreground */
uchar bg; /* background */
uchar state; /* state flags */
} Glyph;
typedef Glyph* Line;


Loading…
Cancel
Save