r855 - trunk/code/client
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat Aug 19 10:40:24 EDT 2006
Author: tma
Date: 2006-08-19 10:40:24 -0400 (Sat, 19 Aug 2006)
New Revision: 855
Modified:
trunk/code/client/snd_openal.c
Log:
* Compiler warning fix
Modified: trunk/code/client/snd_openal.c
===================================================================
--- trunk/code/client/snd_openal.c 2006-08-19 13:44:10 UTC (rev 854)
+++ trunk/code/client/snd_openal.c 2006-08-19 14:40:24 UTC (rev 855)
@@ -1747,8 +1747,9 @@
// Device enumeration support (extension currently only exists for windows).
if((enumsupport = qalcIsExtensionPresent(NULL, "ALC_ENUMERATION_EXT")))
{
- char *devicelist, devicenames[1024] = "";
- char *defaultdevice;
+ char devicenames[1024] = "";
+ const ALCchar *devicelist;
+ const ALCchar *defaultdevice;
int curlen;
qboolean hasbegun = qfalse;
More information about the quake3-commits
mailing list