diff options
Diffstat (limited to 'source/prompt.h')
-rw-r--r-- | source/prompt.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source/prompt.h b/source/prompt.h index 33d0426..9caf34f 100644 --- a/source/prompt.h +++ b/source/prompt.h @@ -22,24 +22,24 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // prompt.h // -#define HISTORY_SIZE 128 -#define HISTORY_MASK ( HISTORY_SIZE - 1 ) +#define HISTORY_SIZE 128 +#define HISTORY_MASK ( HISTORY_SIZE - 1 ) -#define MAX_MATCHES 1024 -#define MAX_PARTIAL 32 +#define MAX_MATCHES 1024 +#define MAX_PARTIAL 32 typedef struct commandPrompt_s { - int inputLineNum; - int historyLineNum; + int inputLineNum; + int historyLineNum; - inputField_t inputLine; - char *history[HISTORY_SIZE]; + inputField_t inputLine; + char *history[HISTORY_SIZE]; char *search; - int widthInChars; + int widthInChars; qboolean tooMany; - void (* q_printf( 1, 2 ) printf)( const char *fmt, ... ); + void (* q_printf( 1, 2 ) printf)( const char *fmt, ... ); } commandPrompt_t; |