mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
keys.c: increase CMDLINES (history.txt lines) from 32 to 64
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1552 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
9dd0a76812
commit
ae38737ada
2 changed files with 3 additions and 2 deletions
|
@ -27,7 +27,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
/* key up events are sent even if in console mode */
|
||||
|
||||
#define HISTORY_FILE_NAME "history.txt"
|
||||
#define CMDLINES 32
|
||||
|
||||
char key_lines[CMDLINES][MAXCMDLINE];
|
||||
|
||||
|
|
|
@ -163,7 +163,9 @@ typedef enum {key_game, key_console, key_message, key_menu} keydest_t;
|
|||
extern keydest_t key_dest;
|
||||
extern char *keybindings[MAX_KEYS];
|
||||
|
||||
extern char key_lines[32][MAXCMDLINE];
|
||||
#define CMDLINES 64
|
||||
|
||||
extern char key_lines[CMDLINES][MAXCMDLINE];
|
||||
extern int edit_line;
|
||||
extern int key_linepos;
|
||||
extern int key_insert;
|
||||
|
|
Loading…
Reference in a new issue