mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Draw disconnect icon over lagometer in Team Arena too
The blinking disconnect icon is drawn over lagometer in Q3. Team Arena moved the lagometer location. Now let's draw the disconnect icon over lagometer in Team Arena too!
This commit is contained in:
parent
082376ed9e
commit
c14cb70f15
1 changed files with 5 additions and 0 deletions
|
@ -1606,8 +1606,13 @@ static void CG_DrawDisconnect( void ) {
|
|||
return;
|
||||
}
|
||||
|
||||
#ifdef MISSIONPACK
|
||||
x = 640 - 48;
|
||||
y = 480 - 144;
|
||||
#else
|
||||
x = 640 - 48;
|
||||
y = 480 - 48;
|
||||
#endif
|
||||
|
||||
CG_DrawPic( x, y, 48, 48, trap_R_RegisterShader("gfx/2d/net.tga" ) );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue