Skip to content

Commit

Permalink
unused variables removed
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Jul 7, 2023
1 parent 170299f commit e24b002
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions source/Gui/AlienImGui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1427,14 +1427,10 @@ void AlienImGui::BasicInputColorMatrix(BasicInputColorMatrixParameters<T> const&
auto format = parameters._format;
T sliderValue;
T minValue = value[0][0], maxValue = value[0][0];
int sliderValueColor1 = 0;
int sliderValueColor2 = 0;
for (int i = 1; i < MAX_COLORS; ++i) {
for (int j = 1; j < MAX_COLORS; ++j) {
maxValue = std::max(maxValue, value[i][j]);
minValue = std::min(minValue, value[i][j]);
sliderValueColor1 = i;
sliderValueColor2 = j;
}
}

Expand Down

0 comments on commit e24b002

Please sign in to comment.