From 769ab1db06e5d32877d1453784c9367f9f36d7ec Mon Sep 17 00:00:00 2001 From: stpohle Date: Wed, 26 May 2004 22:20:55 +0000 Subject: [PATCH] chat_setactive fixed active value was always set to true --- src/chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat.c b/src/chat.c index aa63ad6..818d830 100644 --- a/src/chat.c +++ b/src/chat.c @@ -270,7 +270,7 @@ chat_loop (SDL_Event * event) void chat_setactive (int active, int keepactive) { - chat.active = 1; + chat.active = active; chat.changed = 1; chat_draw (); chat.keepactive = keepactive;