Skip to content

Commit

Permalink
Add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
aqw42 committed Jun 6, 2024
1 parent c986761 commit 7bd68a8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/util/color/colorpalette.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ mixxx::RgbColor::optional_t ColorPalette::previousColor(mixxx::RgbColor::optiona

mixxx::RgbColor::optional_t ColorPalette::getNthColor(
mixxx::RgbColor::optional_t color, int steps) const {
// TODO : Use rem_euclid modulo function instead of a loop
while (steps) {
if (steps > 0) {
color = nextColor(color);
Expand Down

0 comments on commit 7bd68a8

Please sign in to comment.