Skip to content
Snippets Groups Projects
Commit cdc648d7 authored by George Nachman's avatar George Nachman
Browse files

Remove extra bit in screen_char_t

parent b5e3ca41
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -95,10 +95,10 @@ typedef struct PTYFontInfo PTYFontInfo;
 
// option to not render in bold
BOOL useBoldFont;
// Option to draw bold text as brighter colors.
BOOL useBrightBold;
// option to not render in italic
BOOL useItalicFont;
 
Loading
Loading
@@ -134,7 +134,7 @@ typedef struct PTYFontInfo PTYFontInfo;
 
// transparency
double transparency;
double blend;
double blend;
 
// data source
VT100Screen *dataSource;
Loading
Loading
@@ -316,7 +316,7 @@ typedef struct PTYFontInfo PTYFontInfo;
FindContext initialFindContext_;
 
PointerController *pointer_;
NSCursor *cursor_;
NSCursor *cursor_;
}
 
+ (NSCursor *)textViewCursor;
Loading
Loading
Loading
Loading
@@ -128,10 +128,10 @@ typedef struct screen_char_t
unsigned int italic : 1;
unsigned int blink : 1;
unsigned int underline : 1;
// These bits aren't used by are defined here so that the entire memory
// These bits aren't used but are defined here so that the entire memory
// region can be initialized.
unsigned int unused : 26;
unsigned int unused : 25;
} screen_char_t;
 
// Standard unicode replacement string. Is a double-width character.
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment