mirror of
https://github.com/yawut/SDL.git
synced 2026-08-24 17:55:17 -05:00
Allow abbreviated strings to be used for driver names.
This allows people to use "pulse" with both SDL 1.2 and 2.0
This commit is contained in:
@@ -580,8 +580,8 @@ SDL_AudioInit(const char *driver_name)
|
||||
for (i = 0; (!initialized) && (bootstrap[i]); ++i) {
|
||||
/* make sure we should even try this driver before doing so... */
|
||||
const AudioBootStrap *backend = bootstrap[i];
|
||||
if (((driver_name) && (SDL_strcasecmp(backend->name, driver_name))) ||
|
||||
((!driver_name) && (backend->demand_only))) {
|
||||
if ((driver_name && (SDL_strncasecmp(backend->name, driver_name, SDL_strlen(driver_name)) != 0)) ||
|
||||
(!driver_name && backend->demand_only)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
@@ -437,7 +437,7 @@ SDL_VideoInit(const char *driver_name)
|
||||
}
|
||||
if (driver_name != NULL) {
|
||||
for (i = 0; bootstrap[i]; ++i) {
|
||||
if (SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
|
||||
if (SDL_strncasecmp(bootstrap[i]->name, driver_name, SDL_strlen(driver_name)) == 0) {
|
||||
video = bootstrap[i]->create(index);
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user