Skip to content

Commit

Permalink
makeDetailsMask() remove a cast
Browse files Browse the repository at this point in the history
  • Loading branch information
Explorer09 committed Mar 18, 2024
1 parent d81ee66 commit b9a075a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Meter.c
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ static uint16_t GraphMeterMode_makeDetailsMask(const GraphColorComputeState* pre
}
}

mask = (uint16_t)(((unsigned int)mask >> blanksAtEnd) << blanksAtEnd);
mask = (uint16_t)((mask >> blanksAtEnd) << blanksAtEnd);

if (needsTiebreak) {
if (roundDirInAscii > 0) {
Expand Down

0 comments on commit b9a075a

Please sign in to comment.