Skip to content

Commit 652916e

Browse files
authored
Simplify case handling in dmdreader.cpp
Removed redundant case handling for DMD_HOMEPIN.
1 parent a4ba438 commit 652916e

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/dmdreader.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,8 +672,6 @@ void dmd_dma_handler() {
672672
v = upscale_4bit_0_4_to_0_15(src4[w] + src3[w] + src2[w] + src1[w]);
673673
break;
674674
case DMD_HOMEPIN:
675-
v = src4[w] * 8 + src3[w] * 4 + src2[w] * 2 + src1[w];
676-
break;
677675
default:
678676
v = src4[w] * 8 + src3[w] * 4 + src2[w] * 2 + src1[w];
679677
}

0 commit comments

Comments
 (0)