Skip to content

Commit

Permalink
fixed pinball DMD data sent to dmdserver
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Jul 9, 2024
1 parent 0eb2052 commit cc1e908
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 @@ -359,7 +359,7 @@ void DMD::QueueUpdate(const std::shared_ptr<Update> dmdUpdate, bool buffered)
strcpy(pathsHeader.altColorPath, m_altColorPath);
strcpy(pathsHeader.pupVideosPath, m_pupVideosPath);
m_pDMDServerConnector->write_n(&pathsHeader, sizeof(PathsHeader));
m_pDMDServerConnector->write_n(&dmdUpdate, sizeof(Update));
m_pDMDServerConnector->write_n(dmdUpdate.get(), sizeof(Update));

if (streamHeader.disconnectOthers != 0) m_dmdServerDisconnectOthers = false;
}
Expand Down

0 comments on commit cc1e908

Please sign in to comment.