diff options
author | Chris Robinson <[email protected]> | 2009-11-29 23:07:04 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-11-29 23:07:04 -0800 |
commit | 786b98a01304f8d26afc126b1ec9385f8b283d0b (patch) | |
tree | a95b1b5443bc1dbed0b3bde4ef2e3ea648844bd5 | |
parent | f63d8dbf38352b9ca0f1dc5e8eab87242c81b3ee (diff) |
Avoid setting a field redundantly
-rw-r--r-- | Alc/dsound.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c index 8d7b42b9..4a20b93e 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -414,7 +414,6 @@ static ALCboolean DSoundResetPlayback(ALCdevice *device) if(SUCCEEDED(hr)) { - device->ExtraData = pData; device->Format = format; pData->thread = StartThread(DSoundProc, device); if(!pData->thread) |