Skip to content

Commit

Permalink
Update music_player.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfloltk authored Feb 3, 2024
1 parent 255f9bf commit 11e43be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sys-tune/source/impl/music_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ namespace tune::impl {
bool g_use_title_volume = true;

AudioDriver g_drv;
constexpr const int MinSampleCount = 32;
constexpr const int MaxChannelCount = 256;
constexpr const int MinSampleCount = 256;
constexpr const int MaxChannelCount = 32;
constexpr const int BufferCount = 8;
constexpr const int AudioSampleSize = MinSampleCount * MaxChannelCount * sizeof(s32);
constexpr const int AudioPoolSize = AudioSampleSize * BufferCount;
Expand Down

0 comments on commit 11e43be

Please sign in to comment.