do not draw little dot in follow mode

This commit is contained in:
Fabian Greffrath 2022-06-29 09:00:14 +02:00
parent 4dec0ce25f
commit 78a24f99d0

View File

@ -2052,7 +2052,11 @@ void AM_drawMarks(void)
//
void AM_drawCrosshair(int color)
{
// [crispy] do not draw the useless dot on the player arrow
if (!followplayer)
{
fb[(f_w*(f_h+1))/2] = color; // single point for now
}
}
//