diff options
Diffstat (limited to 'pcsound')
-rw-r--r-- | pcsound/pcsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcsound/pcsound.c b/pcsound/pcsound.c index 3e6c3ae9..aeba5148 100644 --- a/pcsound/pcsound.c +++ b/pcsound/pcsound.c @@ -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! |