Skip to content

Commit

Permalink
Make the previous fix in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
DolceTriade committed May 5, 2015
1 parent d6e00c7 commit 9c9db73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gamelogic/cgame/cg_rocket_draw.cpp
Expand Up @@ -2337,7 +2337,7 @@ static void CG_Rocket_DrawSpawnQueuePosition()

else
{
s = va( P_( "There is 1 spawn remaining", "There are %d spawns remaining", spawns ), spawns );
s = va( _( "You are at position %d in the spawn queue" ), position );
}

trap_Rocket_SetInnerRML( s, 0 );
Expand Down Expand Up @@ -2367,7 +2367,7 @@ static void CG_Rocket_DrawNumSpawns()
}
else
{
s = P_( "There is 1 spawn remaining", va( "There are %d spawns remaining", spawns ), spawns );
s = va( P_( "There is 1 spawn remaining", "There are %d spawns remaining", spawns ), spawns );
}

trap_Rocket_SetInnerRML( s, 0 );
Expand Down

0 comments on commit 9c9db73

Please sign in to comment.