Skip to content

Commit

Permalink
fixes #4689: maps with width < 150 tiles like Sk-Rush no longer start…
Browse files Browse the repository at this point in the history
… with radar resized to 14 or 32 based on screen width (patch 2/3)
  • Loading branch information
Forgon2100 committed Jan 6, 2018
1 parent 0752c2b commit af9a96f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/radar.cpp
Expand Up @@ -151,10 +151,6 @@ bool InitRadar()
colRadarAlly = WZCOL_YELLOW;
colRadarEnemy = WZCOL_RED;
colRadarMe = WZCOL_WHITE;
if (mapWidth < 150) // too small!
{
RadarZoom = pie_GetVideoBufferWidth() <= 640 ? 14 : DEFAULT_RADARZOOM * 2;
}
return true;
}

Expand Down

0 comments on commit af9a96f

Please sign in to comment.