From cbbe66365f1c742031aff1b3746a05842360f573 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Sun, 28 Jan 2018 04:30:25 +0000 Subject: [PATCH] Remove function left behind in r6587. git-svn-id: https://svn.eduke32.com/eduke32@6598 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/screentext.cpp | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/source/duke3d/src/screentext.cpp b/source/duke3d/src/screentext.cpp index 45fadf2cc..f3c03a008 100644 --- a/source/duke3d/src/screentext.cpp +++ b/source/duke3d/src/screentext.cpp @@ -1022,26 +1022,6 @@ static inline int32_t texta(int32_t t) return 255 - clamp(t<<3, 0, 255); } -static FORCE_INLINE int32_t text_fragbarheight(void) -{ - if (GTFLAGS(GAMETYPE_FRAGBAR) && ud.screen_size > 0 -#ifdef SPLITSCREEN_MOD_HACKS - && !g_fakeMultiMode -#endif - && (g_netServer || ud.multimode > 1)) - { - int32_t i, j = 0; - - for (TRAVERSE_CONNECT(i)) - if (i > j) - j = i; - - return ((j & ~3) + 4) << 17; // ((j / 4 + 1) * 8) << 16 - } - - return 0; -} - static FORCE_INLINE int32_t text_ypos(void) { if (ud.hudontop == 1 && ud.screen_size == 4 && ud.althud == 1)