Remove variable bits per sample - it's always 16.

This commit is contained in:
Dr. Chat
2015-05-30 21:01:55 -05:00
parent d97a6d1929
commit fedf7357a5
3 changed files with 14 additions and 27 deletions

View File

@@ -102,7 +102,7 @@ X_STATUS AudioSystem::Setup() {
// Needed because some data needs to be persisted across calls
// TODO: Need to destroy this on class destruction
context.decoder = new AudioDecoder();
context.decoder->Initialize(16);
context.decoder->Initialize();
}
registers_.next_context = 1;