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:
parent
6e147b2087
commit
7da5b83b75
2 changed files with 3 additions and 3 deletions
|
@ -580,8 +580,8 @@ SDL_AudioInit(const char *driver_name)
|
||||||
for (i = 0; (!initialized) && (bootstrap[i]); ++i) {
|
for (i = 0; (!initialized) && (bootstrap[i]); ++i) {
|
||||||
/* make sure we should even try this driver before doing so... */
|
/* make sure we should even try this driver before doing so... */
|
||||||
const AudioBootStrap *backend = bootstrap[i];
|
const AudioBootStrap *backend = bootstrap[i];
|
||||||
if (((driver_name) && (SDL_strcasecmp(backend->name, driver_name))) ||
|
if ((driver_name && (SDL_strncasecmp(backend->name, driver_name, SDL_strlen(driver_name)) != 0)) ||
|
||||||
((!driver_name) && (backend->demand_only))) {
|
(!driver_name && backend->demand_only)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -437,7 +437,7 @@ SDL_VideoInit(const char *driver_name)
|
||||||
}
|
}
|
||||||
if (driver_name != NULL) {
|
if (driver_name != NULL) {
|
||||||
for (i = 0; bootstrap[i]; ++i) {
|
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);
|
video = bootstrap[i]->create(index);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue