mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
gcc warnings = gone
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@223 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
4aab741fc8
commit
d2e02eccbe
2 changed files with 9 additions and 9 deletions
|
@ -977,7 +977,7 @@ void S_ClearBuffer (soundcardinfo_t *sc)
|
|||
|
||||
reps = 0;
|
||||
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, &pData, &dwSize, NULL, NULL, 0)) != DS_OK)
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, (void**)&pData, &dwSize, NULL, NULL, 0)) != DS_OK)
|
||||
{
|
||||
if (hresult != DSERR_BUFFERLOST)
|
||||
{
|
||||
|
|
|
@ -90,8 +90,8 @@ void S_TransferStereo16 (soundcardinfo_t *sc, int endtime)
|
|||
{
|
||||
reps = 0;
|
||||
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, &pbuf, &dwSize,
|
||||
&pbuf2, &dwSize2, 0)) != DS_OK)
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, (void**)&pbuf, &dwSize,
|
||||
(void**)&pbuf2, &dwSize2, 0)) != DS_OK)
|
||||
{
|
||||
if (hresult != DSERR_BUFFERLOST)
|
||||
{
|
||||
|
@ -213,8 +213,8 @@ void S_Transfer4Speaker16 (soundcardinfo_t *sc, int endtime)
|
|||
{
|
||||
reps = 0;
|
||||
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, &pbuf, &dwSize,
|
||||
&pbuf2, &dwSize2, 0)) != DS_OK)
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, (void**)&pbuf, &dwSize,
|
||||
(void**)&pbuf2, &dwSize2, 0)) != DS_OK)
|
||||
{
|
||||
if (hresult != DSERR_BUFFERLOST)
|
||||
{
|
||||
|
@ -357,8 +357,8 @@ void S_Transfer6Speaker16 (soundcardinfo_t *sc, int endtime)
|
|||
{
|
||||
reps = 0;
|
||||
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, &pbuf, &dwSize,
|
||||
&pbuf2, &dwSize2, 0)) != DS_OK)
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, (void**)&pbuf, &dwSize,
|
||||
(void**)&pbuf2, &dwSize2, 0)) != DS_OK)
|
||||
{
|
||||
if (hresult != DSERR_BUFFERLOST)
|
||||
{
|
||||
|
@ -463,8 +463,8 @@ void S_TransferPaintBuffer(soundcardinfo_t *sc, int endtime)
|
|||
{
|
||||
reps = 0;
|
||||
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, &pbuf, &dwSize,
|
||||
&pbuf2,&dwSize2, 0)) != DS_OK)
|
||||
while ((hresult = sc->pDSBuf->lpVtbl->Lock(sc->pDSBuf, 0, sc->gSndBufSize, (void**)&pbuf, &dwSize,
|
||||
(void**)&pbuf2,&dwSize2, 0)) != DS_OK)
|
||||
{
|
||||
if (hresult != DSERR_BUFFERLOST)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue