Draw chat messages & co. during intermission

This commit is contained in:
Andrei Drexler 2012-04-03 13:55:28 +00:00
parent 41ae1c7fd1
commit 4e947bbf5a

View file

@ -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;
}