From d177b0cd296b4890f26da2a6a12e74203bfba23f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 27 Jul 2020 17:56:55 +0200 Subject: [PATCH] - fixed hud_messages 1 not sending messages to the notfy display. Fixes #43 --- source/games/duke/src/game_misc.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/games/duke/src/game_misc.cpp b/source/games/duke/src/game_misc.cpp index 18890bba0..d5d0ea541 100644 --- a/source/games/duke/src/game_misc.cpp +++ b/source/games/duke/src/game_misc.cpp @@ -161,8 +161,7 @@ void FTA(int q, struct player_struct* p) else #endif { - int printlevel = hud_messages == 1 ? PRINT_MEDIUM : PRINT_MEDIUM | PRINT_NOTIFY; - Printf(printlevel, "%s\n", qu); + Printf(PRINT_MEDIUM | PRINT_NOTIFY, "%s\n", qu); } } }