summaryrefslogtreecommitdiff
path: root/src/ui/ui_main.c
diff options
context:
space:
mode:
authorBen Millwood <thebenmachine@gmail.com>2009-10-03 12:12:12 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:15:45 +0000
commit32631d7354556ff88ecfe3ff9a9d80075422fbef (patch)
tree083df63c1aada8cc7d0f6849c19b3dcee056c3fe /src/ui/ui_main.c
parentec254e3bebdc3957a630b23b3b77d5460f2c7674 (diff)
* Add BG_EventName and use it to simplify a series of debugging messages
* Correct crouch check in ClientTimerActions * Ensure animation togglebit on buildables is only used once per frame (bug 3377) * Make G_FloodLimited more robust and with a pointlessly informative return value * Add a brief comment to the G_SayArg* functions to explain their purpose, which wasn't at all clear to me until I experimented with them * Remove more redundant va()s * Remove an unused variable and associated functions that were causing a compiler warning
Diffstat (limited to 'src/ui/ui_main.c')
-rw-r--r--src/ui/ui_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/ui_main.c b/src/ui/ui_main.c
index 304222af..df295a4e 100644
--- a/src/ui/ui_main.c
+++ b/src/ui/ui_main.c
@@ -4351,7 +4351,8 @@ void UI_DrawConnectScreen( qboolean overlay )
Text_PaintCenter( centerPoint, yStart, scale, colorWhite, va( "Loading %s", Info_ValueForKey( info, "mapname" ) ), 0 );
if( !Q_stricmp( cstate.servername, "localhost" ) )
- Text_PaintCenter( centerPoint, yStart + 48, scale, colorWhite, va( "Starting up..." ), ITEM_TEXTSTYLE_SHADOWEDMORE );
+ Text_PaintCenter( centerPoint, yStart + 48, scale, colorWhite,
+ "Starting up...", ITEM_TEXTSTYLE_SHADOWEDMORE );
else
{
Com_sprintf( text, sizeof( text ), "Connecting to %s", cstate.servername );