diff options
author | Chris Xiong <chirs241097@gmail.com> | 2024-01-14 00:57:23 -0500 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2024-01-14 00:57:23 -0500 |
commit | 7830db71fa0160d7f40ea9b4650003019c2ff50c (patch) | |
tree | 27f055fd36a64ea76a74587caa22eed617147c03 /qmidiplayer-desktop/qmpplugin.cpp | |
parent | f7def0d883fa5cab62ef61b40b9f857245be8e6c (diff) | |
download | QMidiPlayer-7830db71fa0160d7f40ea9b4650003019c2ff50c.tar.xz |
Fixes for channels window and simple visualization.
a) Channel status light doesn't blink in release builds.
b) Simple visualization shows blank channel info when opened.
Diffstat (limited to 'qmidiplayer-desktop/qmpplugin.cpp')
-rw-r--r-- | qmidiplayer-desktop/qmpplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmidiplayer-desktop/qmpplugin.cpp b/qmidiplayer-desktop/qmpplugin.cpp index 7efd345..eb374d6 100644 --- a/qmidiplayer-desktop/qmpplugin.cpp +++ b/qmidiplayer-desktop/qmpplugin.cpp @@ -180,7 +180,7 @@ double qmpPluginAPIImpl::getRealTempo() } uint32_t qmpPluginAPIImpl::getTimeSig() { - int n, d = 0, t; + int n, d = 0, t = 1; qmw &&qmw->getPlayer() ? qmw->getPlayer()->getCurrentTimeSignature(&n, &t) : void(0); for (; t >>= 1; ++d); return n << 8 | d; |