aboutsummaryrefslogtreecommitdiffstats
path: root/core/buffer_storage.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-02-14 08:38:25 -0800
committerChris Robinson <[email protected]>2023-02-14 08:39:30 -0800
commit5c8855b9a1849af855923aa1b87005febd01704b (patch)
tree0100feb60ef3cd3bca241d330ff219af2b76ec4e /core/buffer_storage.cpp
parenta84efdc45936bcc4427af272b975c6a197081c22 (diff)
Support MSADPCM samples in the mixer
Diffstat (limited to 'core/buffer_storage.cpp')
-rw-r--r--core/buffer_storage.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/buffer_storage.cpp b/core/buffer_storage.cpp
index 1e826bff..4f1480c2 100644
--- a/core/buffer_storage.cpp
+++ b/core/buffer_storage.cpp
@@ -17,6 +17,7 @@ uint BytesFromFmt(FmtType type) noexcept
case FmtMulaw: return sizeof(uint8_t);
case FmtAlaw: return sizeof(uint8_t);
case FmtIMA4: break;
+ case FmtMSADPCM: break;
}
return 0;
}