- moved console command line buffer tab completion into their own files.
- layout fixes in load/save menu and confirmation screen.
This commit is contained in:
parent
a6842b6482
commit
ef7a7cc39d
13 changed files with 788 additions and 652 deletions
9
src/common/console/c_tabcomplete.h
Normal file
9
src/common/console/c_tabcomplete.h
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
void C_AddTabCommand (const char *name);
|
||||
void C_RemoveTabCommand (const char *name);
|
||||
void C_ClearTabCommands(); // Removes all tab commands
|
||||
void C_TabComplete(bool goForward);
|
||||
bool C_TabCompleteList();
|
||||
extern bool TabbedLast; // True if last key pressed was tab
|
||||
extern bool TabbedList; // True if tab list was shown
|
||||
Loading…
Add table
Add a link
Reference in a new issue