Use strcmp(), not strcasecmp() for checking driver name
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1004
This commit is contained in:
parent
764f451cdf
commit
6805e19222
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ int PCSound_Init(pcsound_callback_func callback_func)
|
|||
{
|
||||
for (i=0; drivers[i] != NULL; ++i)
|
||||
{
|
||||
if (!strcasecmp(drivers[i]->name, driver_name))
|
||||
if (!strcmp(drivers[i]->name, driver_name))
|
||||
{
|
||||
// Found the driver!
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue