Skip to content

Commit

Permalink
reduce audio sample buffer to 256 bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
floooh committed Apr 4, 2018
1 parent 0622ad6 commit 7c62e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yakc_oryol/Audio.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Audio::Setup(yakc* emu_) {
this->emu = emu_;
if (nullptr == soloud) {
soloud = Memory::New<SoLoud::Soloud>();
soloud->init(SoLoud::Soloud::CLIP_ROUNDOFF, SoLoud::Soloud::AUTO, 44100, 1024, 1);
soloud->init(SoLoud::Soloud::CLIP_ROUNDOFF, SoLoud::Soloud::AUTO, 44100, 256, 1);
}
soloud_open_count++;
this->audioSource = Memory::New<AudioSource>();
Expand Down

0 comments on commit 7c62e32

Please sign in to comment.