diff options
author | Chris Robinson <[email protected]> | 2012-02-14 11:44:57 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-02-14 11:44:57 -0800 |
commit | 1140b3ae837437966c9d2474fca8aa17d8193aa5 (patch) | |
tree | 6006870627cde536874d1b4aa9fe487655296534 /Alc/backends/dsound.c | |
parent | 5e1d1a52bae6d22565bdfe7042da29e61197d36c (diff) |
Support signed and unsigned 32-bit int output
Diffstat (limited to 'Alc/backends/dsound.c')
-rw-r--r-- | Alc/backends/dsound.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Alc/backends/dsound.c b/Alc/backends/dsound.c index 84b7377a..51fd8d9b 100644 --- a/Alc/backends/dsound.c +++ b/Alc/backends/dsound.c @@ -396,8 +396,12 @@ static ALCboolean DSoundResetPlayback(ALCdevice *device) case DevFmtUShort: device->FmtType = DevFmtShort; break; + case DevFmtUInt: + device->FmtType = DevFmtInt; + break; case DevFmtUByte: case DevFmtShort: + case DevFmtInt: case DevFmtFloat: break; } |