Skip to content
Snippets Groups Projects
Commit 13e3c474 authored by Jakob Voigts's avatar Jakob Voigts
Browse files

Fixed some more uint64_t occurrences

parent 508c0d60
No related branches found
No related tags found
No related merge requests found
......@@ -567,9 +567,9 @@ void RecordNode::writeEventBuffer(MidiMessage& event, int samplePosition) //, in
//std::cout << "Received event!" << std::endl;
const uint8* dataptr = event.getRawData();
uint64_t samplePos = (uint64_t) samplePosition;
uint64 samplePos = (uint64) samplePosition;
uint64_t eventTimestamp = timestamp + samplePos;
uint64 eventTimestamp = timestamp + samplePos;
// write timestamp (for buffer only, not the actual event timestamp!!!!!)
fwrite(&eventTimestamp, // ptr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment