From 77bcb5d502c6106ab6095f52f9fd772a4ccdaf4a Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Wed, 18 Oct 2017 16:22:18 +0100 Subject: [PATCH] Slow the flash. --- src/st_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 3f9ba1dee..d6fe2a860 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -966,7 +966,7 @@ static void ST_drawInput(void) } } if (!demosynced) // should always be last, so it doesn't push anything else around - V_DrawThinString(x, y, ((leveltime & 2) ? V_YELLOWMAP : V_REDMAP), "BAD DEMO!!"); + V_DrawThinString(x, y, ((leveltime & 4) ? V_YELLOWMAP : V_REDMAP), "BAD DEMO!!"); } static void ST_drawLevelTitle(void)