]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_alsa.c
eliminated qbyte type, now uses unsigned char throughout the engine for this purpose
[xonotic/darkplaces.git] / snd_alsa.c
index 30237fc34d37ff370d0bb0d072fa4272737f3253..95310d84f2e413d9f60aaa9be6cd8859f9f40f3c 100644 (file)
@@ -282,7 +282,7 @@ int SNDDMA_GetDMAPos (void)
        offset *= shm->format.channels;
        nframes *= shm->format.channels;
        shm->samplepos = offset;
-       shm->buffer = (qbyte *)areas->addr;
+       shm->buffer = (unsigned char *)areas->addr;
        return shm->samplepos;
 }