From 609dca9fdf9a03500c0f4023da7bcc4389f36c52 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 14 Sep 2008 21:29:13 +0000 Subject: Silence some compiler warnings on heretic/hexen code. Subversion-branch: /branches/raven-branch Subversion-revision: 1228 --- src/heretic/ct_chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/heretic/ct_chat.c') diff --git a/src/heretic/ct_chat.c b/src/heretic/ct_chat.c index 94e92471..73a43fc1 100644 --- a/src/heretic/ct_chat.c +++ b/src/heretic/ct_chat.c @@ -387,7 +387,7 @@ void CT_Drawer(void) void CT_queueChatChar(char ch) { - if ((tail + 1) & (QUEUESIZE - 1) == head) + if (((tail + 1) & (QUEUESIZE - 1)) == head) { // the queue is full return; } -- cgit v1.2.3