aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/keys.h
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-21 10:35:24 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-21 10:35:24 +0000
commitef3e7e01a2280c186da589404386ae3364b08a4a (patch)
tree69582b32595f2043903a65dd580572108bc80649 /code/client/keys.h
parent8751aa08ae15df6f179acb4315f951d7add6de02 (diff)
downloadioquake3-aero-ef3e7e01a2280c186da589404386ae3364b08a4a.tar.gz
ioquake3-aero-ef3e7e01a2280c186da589404386ae3364b08a4a.zip
* Don't apply colour escape chars on input fields
git-svn-id: svn://svn.icculus.org/quake3/trunk@1184 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/keys.h')
-rw-r--r--code/client/keys.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/client/keys.h b/code/client/keys.h
index 851d367..0168468 100644
--- a/code/client/keys.h
+++ b/code/client/keys.h
@@ -33,8 +33,8 @@ extern qkey_t keys[MAX_KEYS];
// NOTE TTimo the declaration of field_t and Field_Clear is now in qcommon/qcommon.h
void Field_KeyDownEvent( field_t *edit, int key );
void Field_CharEvent( field_t *edit, int ch );
-void Field_Draw( field_t *edit, int x, int y, int width, qboolean showCursor );
-void Field_BigDraw( field_t *edit, int x, int y, int width, qboolean showCursor );
+void Field_Draw( field_t *edit, int x, int y, int width, qboolean showCursor, qboolean noColorEscape );
+void Field_BigDraw( field_t *edit, int x, int y, int width, qboolean showCursor, qboolean noColorEscape );
#define COMMAND_HISTORY 32
extern field_t historyEditLines[COMMAND_HISTORY];