diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-30 10:08:11 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-30 10:08:11 -0400 |
commit | 12440b673f55eb4bfac5f553923de7ce9508a2a7 (patch) | |
tree | 3fdcace26104dd2b116774c385a23e724d245571 /source/device.cpp | |
parent | 41ae9b3b1b6a75d12c39f1186e6d6e644f834c6f (diff) |
new file on startup; styling; bug fixes
Diffstat (limited to 'source/device.cpp')
-rw-r--r-- | source/device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/device.cpp b/source/device.cpp index 333fd81..6f052d7 100644 --- a/source/device.cpp +++ b/source/device.cpp @@ -519,7 +519,7 @@ void deviceRenderToolbar() ImGui::SameLine(); ImGui::SetNextItemWidth(100); if (ImGui::BeginCombo("", sampleRatePreview)) { - for (int i = 0; i < sampleRateList.size(); ++i) { + for (unsigned int i = 0; i < sampleRateList.size(); ++i) { if (ImGui::Selectable(sampleRateList[i])) { sampleRatePreview = sampleRateList[i]; if (m_device != nullptr && !m_device->is_running()) { |