Windows SDL_GetBasePath: Fixed wrong variable when growing the buffer size.

This commit is contained in:
Ryan C. Gordon 2015-05-28 15:29:43 -04:00
parent f9abea2061
commit 566316e052
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ SDL_GetBasePath(void)
/* buffer too small? Try again. */
SDL_free(path);
len *= 2;
buflen *= 2;
}
FreeLibrary(psapi);