mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-16 17:12:17 +00:00
Draw chat messages & co. during intermission
This commit is contained in:
parent
41ae1c7fd1
commit
4e947bbf5a
1 changed files with 8 additions and 0 deletions
|
@ -2656,7 +2656,15 @@ static void CG_Draw2D(void)
|
|||
}
|
||||
|
||||
if (cg.snap->ps.pm_type == PM_INTERMISSION) {
|
||||
float y;
|
||||
|
||||
CG_DrawIntermission();
|
||||
|
||||
// Makro - make sure chat messages still get drawn during intermission
|
||||
|
||||
y = 480 - ICON_SIZE;
|
||||
y = CG_DrawMessageQueue(y);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue