mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-08-24 09:39:57 +02:00
fix peak check secs->msecs
This commit is contained in:
parent
9b72ab96ff
commit
ed49f80322
1 changed files with 2 additions and 2 deletions
|
@ -234,8 +234,8 @@ AudioClient::AudioClient() :
|
|||
connect(_checkPeakValuesTimer, &QTimer::timeout, [this] {
|
||||
QtConcurrent::run(QThreadPool::globalInstance(), [this] { checkPeakValues(); });
|
||||
});
|
||||
const unsigned long PEAK_VALUES_CHECK_INTERVAL_SECS = 50;
|
||||
_checkPeakValuesTimer->start(PEAK_VALUES_CHECK_INTERVAL_SECS);
|
||||
const unsigned long PEAK_VALUES_CHECK_INTERVAL_MSECS = 50;
|
||||
_checkPeakValuesTimer->start(PEAK_VALUES_CHECK_INTERVAL_MSECS);
|
||||
|
||||
configureReverb();
|
||||
|
||||
|
|
Loading…
Reference in a new issue