Skip to content

Commit

Permalink
[PixelOverlay] Remove unused variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
cpinkham committed Nov 11, 2014
1 parent 6378c52 commit 8cc5659
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/memorymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ void SetupPixelMapForBlock(FPPChannelMemoryMapControlBlock *cb) {
// Horizontal Orientation
int y = 0;
for (y = 0; y < height; y++) {
int string = y / cb->strandsPerString;
int segment = y % cb->strandsPerString;
int x = 0;
for (x = 0; x < width; x++) {
Expand Down Expand Up @@ -367,7 +366,6 @@ void SetupPixelMapForBlock(FPPChannelMemoryMapControlBlock *cb) {
// Vertical Orientation
int x = 0;
for (x = 0; x < width; x++) {
int string = x / cb->strandsPerString;
int segment = x % cb->strandsPerString;
int y = 0;
for (y = 0; y < height; y++) {
Expand Down

0 comments on commit 8cc5659

Please sign in to comment.