Remove the 'normal speed' icon, which had always been unused in Blades of Exile

closes #387
This commit is contained in:
2024-08-09 22:32:09 -04:00
parent 4e6306b110
commit 9f67015ffe

View File

@@ -644,7 +644,6 @@ void draw_pc_effects(short pc) {
if(next.first == eStatus::POISON && next.second > 4) placedIcon = 1;
else if(next.second > 0) placedIcon = statIcons[next.first].first;
else if(next.second < 0) placedIcon = statIcons[next.first].second;
else if(next.first == eStatus::HASTE_SLOW) placedIcon = 7;
if(placedIcon >= 0) {
rect_draw_some_item(status_gworld, get_stat_effect_rect(placedIcon), pc_stats_gworld, dest_rect, sf::BlendAlpha);
dest_rect.offset(13, 0);