We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7449b commit e6fa426Copy full SHA for e6fa426
include/Transitiontypes/Transition.hpp
@@ -927,8 +927,8 @@ uint16_t Transition::transitionMatrixRain() {
927
}
928
929
float progress = static_cast<float>(phase) / static_cast<float>(frames);
930
- for (col = 0; col < usedUhrType->rowsWordMatrix(); col++) {
931
- for (row = 0; row < usedUhrType->colsWordMatrix(); row++) {
+ for (col = 0; col < usedUhrType->colsWordMatrix(); col++) {
+ for (row = 0; row < usedUhrType->rowsWordMatrix(); row++) {
932
fadeColor =
933
fadeColor.LinearBlend(old[row][col], act[row][col], progress);
934
rainColor = rain[col].get(row);
0 commit comments