Skip to content

Commit

Permalink
fixed v1 palette
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed May 19, 2024
1 parent 12f018c commit d1bd374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DMD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ void DMD::SerumThread()
memcpy(dmdUpdate.data, m_pSerum->frame,
m_pUpdateBufferQueue[currentBufferPosition]->width *
m_pUpdateBufferQueue[currentBufferPosition]->height);
memcpy(dmdUpdate.segData2, m_pSerum->palette, PALETTE_SIZE);
memcpy(dmdUpdate.segData, m_pSerum->palette, PALETTE_SIZE);

QueueUpdate(dmdUpdate, false);
}
Expand Down

0 comments on commit d1bd374

Please sign in to comment.