mirror of https://github.com/encounter/SDL.git
Remove extra / in PSP GetPrefPath
This commit is contained in:
parent
33dccbb381
commit
6d46e30fed
|
@ -64,9 +64,9 @@ SDL_GetPrefPath(const char *org, const char *app)
|
||||||
retval = (char *) SDL_malloc(len);
|
retval = (char *) SDL_malloc(len);
|
||||||
|
|
||||||
if (*org) {
|
if (*org) {
|
||||||
SDL_snprintf(retval, len, "%s/%s/%s/", base, org, app);
|
SDL_snprintf(retval, len, "%s%s/%s/", base, org, app);
|
||||||
} else {
|
} else {
|
||||||
SDL_snprintf(retval, len, "%s/%s/", base, app);
|
SDL_snprintf(retval, len, "%s%s/", base, app);
|
||||||
}
|
}
|
||||||
free(base);
|
free(base);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue