From c8a9209d77a896bf49227e5aeccd54e91ccf29cc Mon Sep 17 00:00:00 2001 From: xHire Date: Sat, 25 Oct 2008 14:11:06 +0200 Subject: Changed style of the code to the K&R standard --- src/client/chat.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/client/chat.h') diff --git a/src/client/chat.h b/src/client/chat.h index fc6abc3..9022466 100644 --- a/src/client/chat.h +++ b/src/client/chat.h @@ -1,18 +1,18 @@ #ifndef CHAT_H -#define CHAT_H +# define CHAT_H -#define CHAT_MAX_LINES 10 -#define CHAT_TIME_MULTIPLE 10 -#define CHAT_TIME_BLICK_CURSOR 20 -#define CHAT_LINE_WIDTH 320 +# define CHAT_MAX_LINES 10 +# define CHAT_TIME_MULTIPLE 10 +# define CHAT_TIME_BLICK_CURSOR 20 +# define CHAT_LINE_WIDTH 320 -#define CHAT_SIZE_X 320 -#define CHAT_SIZE_Y 240 +# define CHAT_SIZE_X 320 +# define CHAT_SIZE_Y 240 -#define CHAT_LOCATION_X (WINDOW_SIZE_X/2 - CHAT_SIZE_X/2) -#define CHAT_LOCATION_Y (WINDOW_SIZE_Y/2 - CHAT_SIZE_Y/2) +# define CHAT_LOCATION_X (WINDOW_SIZE_X/2 - CHAT_SIZE_X/2) +# define CHAT_LOCATION_Y (WINDOW_SIZE_Y/2 - CHAT_SIZE_Y/2) extern void initChat(); extern void drawChat(); -- cgit v1.2.3