diff options
author | Jack <xxjack12xx@gmail.com> | 2021-11-10 08:18:57 +0100 |
---|---|---|
committer | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2021-11-11 15:17:10 +0100 |
commit | 6bf0135b415ee56a9e84ac82f80a7eb438fe497a (patch) | |
tree | d19deaa6bb68fe89f1b0dc1a0db4aa1eb6606aa3 /audio/audacity/files/patch-src_MIDIPlay.cpp | |
parent | textproc/py-elementpath: Update to 2.4.0 (diff) |
audio/audacity: Update to 3.1.0
ChangeLog: https://www.audacityteam.org/audacity-3-1-is-out-now/
PR: 259565
Reported by: xxjack12xx@gmail.com (maintainer)
Diffstat (limited to 'audio/audacity/files/patch-src_MIDIPlay.cpp')
-rw-r--r-- | audio/audacity/files/patch-src_MIDIPlay.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/audacity/files/patch-src_MIDIPlay.cpp b/audio/audacity/files/patch-src_MIDIPlay.cpp new file mode 100644 index 000000000000..4c6b68156c20 --- /dev/null +++ b/audio/audacity/files/patch-src_MIDIPlay.cpp @@ -0,0 +1,11 @@ +--- src/MIDIPlay.cpp.orig 2021-10-31 02:53:52 UTC ++++ src/MIDIPlay.cpp +@@ -490,7 +490,7 @@ static double SystemTime(bool usingAlsa) + if (usingAlsa) { + struct timespec now; + // CLOCK_MONOTONIC_RAW is unaffected by NTP or adj-time +- clock_gettime(CLOCK_MONOTONIC_RAW, &now); ++ clock_gettime(CLOCK_REALTIME, &now); + //return now.tv_sec + now.tv_nsec * 0.000000001; + return (now.tv_sec + now.tv_nsec * 0.000000001) - streamStartTime; + } |