summaryrefslogtreecommitdiff
path: root/src/client/chat.h
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2008-10-25 14:11:06 +0200
committerxHire <xhire@tuxportal.cz>2008-10-25 14:11:06 +0200
commitc8a9209d77a896bf49227e5aeccd54e91ccf29cc (patch)
tree6b7367406ebbc6ce3ea5e0c8668c75f6fb3f6ae9 /src/client/chat.h
parentcb9deba915dd7b114eeb76601eb1c8b07c1ba90f (diff)
Changed style of the code to the K&R standard
Diffstat (limited to 'src/client/chat.h')
-rw-r--r--src/client/chat.h18
1 files changed, 9 insertions, 9 deletions
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();