From b2a2a62b7b8a066467d7e8ef520fef7c17e3c5ca Mon Sep 17 00:00:00 2001 From: Bert Date: Sun, 11 Sep 2011 21:01:24 +0200 Subject: Added own bool type --- options.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'options.h') diff --git a/options.h b/options.h index 67ad926..3bf685a 100644 --- a/options.h +++ b/options.h @@ -25,25 +25,25 @@ typedef struct { /* file list: */ char **filenames; - unsigned char from_stdin; - unsigned char recursive; + bool from_stdin; + bool recursive; int filecnt; int startnum; /* image: */ scalemode_t scalemode; float zoom; - unsigned char aa; + bool aa; /* window: */ - unsigned char fixed; - unsigned char fullscreen; + bool fixed_win; + bool fullscreen; char *geometry; /* misc flags: */ - unsigned char quiet; - unsigned char thumbnails; - unsigned char clean_cache; + bool quiet; + bool thumb_mode; + bool clean_cache; } options_t; extern const options_t *options; -- cgit v1.2.3