Fix crash at start in snd_detect(), fixes #4786.

Reviewed By: s0600204, echotangoecho
Differential Revision: https://code.wildfiregames.com/D1254
This was SVN commit r21097.
This commit is contained in:
Nicolas Auvray 2018-02-01 18:12:53 +00:00
parent b695945c59
commit 4fe59c141d

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2017 Wildfire Games.
/* Copyright (C) 2018 Wildfire Games.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
@ -62,5 +62,7 @@ void snd_detect()
} while (*devices);
// Driver version
snd_drv_ver = alGetString(AL_VERSION);
const ALCchar* al_version = alGetString(AL_VERSION);
if (al_version)
snd_drv_ver = al_version;
}