mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
- Fix checking of flags found by Ged
- Remove unsupported DSBLOCK_FROMWRITECURSOR svn path=/trunk/; revision=43942
This commit is contained in:
parent
c1198f3164
commit
8bd2cfb3ab
2 changed files with 1 additions and 6 deletions
|
@ -298,11 +298,6 @@ IDirectSoundCaptureBufferImpl_Lock(
|
|||
|
||||
return DS_OK;
|
||||
}
|
||||
else if (dwFlags & DSBLOCK_FROMWRITECURSOR)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return DSERR_UNSUPPORTED;
|
||||
}
|
||||
else
|
||||
{
|
||||
ASSERT(dwOffset < This->BufferSize);
|
||||
|
|
|
@ -255,7 +255,7 @@ SecondaryDirectSoundBuffer8Impl_fnLock(
|
|||
|
||||
return DS_OK;
|
||||
}
|
||||
else if (dwFlags & DSBLOCK_FROMWRITECURSOR)
|
||||
else if (dwFlags == DSBLOCK_FROMWRITECURSOR)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return DSERR_UNSUPPORTED;
|
||||
|
|
Loading…
Reference in a new issue