From a051a8d5742f8b0f1bbd4f393d1c8c8e20d7429f Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Sun, 6 Nov 2022 03:16:17 +0200 Subject: [PATCH] fix music distortion --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 21a4ab0..0834972 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,7 +13,7 @@ int main() file.open("song"); ALSAOutput output; output.open(); - output.configure(48000, 1, 10, 100000); + output.configure(48000, 2, 10, 100000); output.play(&file); Raven::Application application(true);