use system/dc/, not system/ for ra appdir

This commit is contained in:
Anthony Pesch 2017-09-15 09:25:28 -04:00
parent 083db97f9c
commit 5feae48f5f
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ void retro_init() {
if (env_cb(RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY, &sysdir)) { if (env_cb(RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY, &sysdir)) {
char appdir[PATH_MAX]; char appdir[PATH_MAX];
snprintf(appdir, sizeof(appdir), "%s" PATH_SEPARATOR "dc", sysdir); snprintf(appdir, sizeof(appdir), "%s" PATH_SEPARATOR "dc", sysdir);
fs_set_appdir(sysdir); fs_set_appdir(appdir);
} }
/* load base options from config */ /* load base options from config */