Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

groups.cpp: Prevent divide-by-zero #3387

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hci/groups.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class GroupButton : public DynamicIntFancyButton
#define MAX_DAMAGE_GLOW_ALPHA 100
inline uint8_t accumulatedDamageToTargetGlowAlpha(uint64_t accumulatedDamage, uint64_t totalGroupMaxHealth, uint64_t unitsKilled)
{
uint64_t damageVisualPercent = (accumulatedDamage * 100) / totalGroupMaxHealth;
uint64_t damageVisualPercent = (totalGroupMaxHealth > 0) ? ((accumulatedDamage * 100) / totalGroupMaxHealth) : 0;
if (unitsKilled > 0)
{
damageVisualPercent = 100;
Expand Down
Loading