Skip to content

Commit 078a21b

Browse files
committed
Fixed
1 parent d5995ec commit 078a21b

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/builds.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ jobs:
3535
with:
3636
cmake-version: "4.0.0"
3737

38+
- name: SDL
39+
uses: libsdl-org/setup-sdl@main
40+
with:
41+
install-linux-dependencies: true
42+
version: 3-latest
43+
version-sdl-image: 3-latest
44+
3845
- name: Install Vulkan SDK
3946
uses: humbletim/setup-vulkan-sdk@v1.2.1
4047
with:
@@ -47,11 +54,11 @@ jobs:
4754
brew install pkg-config
4855
if: matrix.os == 'macos-latest'
4956

50-
- name: Install Coverage
57+
- name: Install Packages
5158
env:
5259
CC: ${{ matrix.cc}}
5360
run: |
54-
sudo apt-get install lcov
61+
sudo apt-get install lcov autoconf autoconf-archive automake libtool python3 libltdl-dev
5562
if: matrix.os == 'ubuntu-latest'
5663

5764
- name: Build Zing

app/demo_draw_analysis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void demo_draw_analysis()
4646

4747
if (!spectrumBuckets.empty())
4848
{
49-
ImVec2 plotSize(300, 100);
49+
ImVec2 plotSize(600, 100);
5050
if (i == 0)
5151
{
5252
ImGui::PlotLines(std::format("Spectrum: {}", audio_to_channel_name(Id)).c_str(), &spectrumBuckets[0], static_cast<int>(spectrumBuckets.size() / 2.5), 0, NULL, 0.0f, 1.0f, plotSize);

0 commit comments

Comments
 (0)