timning debug

This commit is contained in:
2026-01-13 21:46:33 -06:00
parent 1121dedcee
commit a9f474f397
6 changed files with 27 additions and 4 deletions

View File

@@ -45,7 +45,8 @@ void KeyboardController::handleKeyPress(QKeyEvent* e) {
queue_.push({
NoteEventType::NoteOn,
it->second,
0.8f
0.8f,
std::chrono::high_resolution_clock::now()
});
}
@@ -59,6 +60,7 @@ void KeyboardController::handleKeyRelease(QKeyEvent* e) {
queue_.push({
NoteEventType::NoteOff,
it->second,
0.8f
0.8f,
std::chrono::high_resolution_clock::now()
});
}