Show mines on radar as white.

This commit is contained in:
Steve 2016-04-01 14:20:03 +01:00
parent 994c0b55dd
commit e2172a1789
1 changed files with 5 additions and 0 deletions

View File

@ -88,6 +88,11 @@ void drawRadar(void)
SDL_SetRenderDrawColor(app.renderer, 255, 255, 255, 255);
}
if (e->type == ET_MINE)
{
SDL_SetRenderDrawColor(app.renderer, 255, 255, 255, 255);
}
SDL_RenderFillRect(app.renderer, &r);
}
}