mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 20:21:38 +00:00
64-bit fix
This commit is contained in:
parent
c037d569be
commit
5555a5339f
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ void S_SoundInfo_f(void)
|
||||||
Con_Printf("%5d samplebits\n", shm->samplebits);
|
Con_Printf("%5d samplebits\n", shm->samplebits);
|
||||||
Con_Printf("%5d submission_chunk\n", shm->submission_chunk);
|
Con_Printf("%5d submission_chunk\n", shm->submission_chunk);
|
||||||
Con_Printf("%5d speed\n", shm->speed);
|
Con_Printf("%5d speed\n", shm->speed);
|
||||||
Con_Printf("0x%x dma buffer\n", (unsigned)shm->buffer);
|
Con_Printf("0x%lx dma buffer\n", (unsigned long)shm->buffer);
|
||||||
Con_Printf("%5d total_channels\n", total_channels);
|
Con_Printf("%5d total_channels\n", total_channels);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue