aboutsummaryrefslogtreecommitdiffstats
path: root/code
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-11-02 17:32:25 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-11-02 17:32:25 +0000
commit2f641b0ec0f603497b372c992ddafeb435b2c499 (patch)
treec4f92b45de04041aeadf8ea74b8d6e032b3342be /code
parentdf2b6dc7581e4e38ed17d7d9a8decd2218cbdb6d (diff)
downloadioquake3-aero-2f641b0ec0f603497b372c992ddafeb435b2c499.tar.gz
ioquake3-aero-2f641b0ec0f603497b372c992ddafeb435b2c499.zip
specify alDevice instead of NULL when asking for for ALC_EXTENSIONS
patch by Ben Millwood (#3777) git-svn-id: svn://svn.icculus.org/quake3/trunk@1478 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r--code/client/snd_openal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c
index 641dcc4..6b3f547 100644
--- a/code/client/snd_openal.c
+++ b/code/client/snd_openal.c
@@ -1898,7 +1898,7 @@ void S_AL_SoundInfo( void )
Com_Printf( " Version: %s\n", qalGetString( AL_VERSION ) );
Com_Printf( " Renderer: %s\n", qalGetString( AL_RENDERER ) );
Com_Printf( " AL Extensions: %s\n", qalGetString( AL_EXTENSIONS ) );
- Com_Printf( " ALC Extensions: %s\n", qalcGetString( NULL, ALC_EXTENSIONS ) );
+ Com_Printf( " ALC Extensions: %s\n", qalcGetString( alDevice, ALC_EXTENSIONS ) );
if(qalcIsExtensionPresent(NULL, "ALC_ENUMERATION_EXT"))
{
Com_Printf(" Device: %s\n", qalcGetString(alDevice, ALC_DEVICE_SPECIFIER));