notcurses_options: clear screen on start

pull/204/head
nick black 5 years ago
parent 78633de427
commit fc17a104b4
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -158,6 +158,8 @@ typedef struct notcurses_options {
// Notcurses typically prints version info in notcurses_init() and
// performance info in notcurses_stop(). This inhibits that output.
bool suppress_bannner;
// Notcurses does not clear the screen on startup unless thus requested to.
bool clear_screen_start;
// If non-NULL, notcurses_render() will write each rendered frame to this
// FILE* in addition to outfp. This is used primarily for debugging.
FILE* renderfp;

@ -121,6 +121,8 @@ typedef struct notcurses_options {
// Notcurses typically prints version info in notcurses_init() and performance
// info in notcurses_stop(). This inhibits that output.
bool suppress_bannner;
// Notcurses does not clear the screen on startup unless thus requested to.
bool clear_screen_start;
// If non-NULL, notcurses_render() will write each rendered frame to this
// FILE* in addition to outfp. This is used primarily for debugging.
FILE* renderfp;

Loading…
Cancel
Save