mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2024-11-14 10:17:38 +01:00
Add in check for updates folder too
This commit is contained in:
parent
d7235c3c2c
commit
0294eed22b
@ -129,7 +129,7 @@ static char *ddrhook1_filesystem_get_path(LPCTSTR path)
|
||||
{
|
||||
char *new_path = NULL;
|
||||
|
||||
// Hardcoded paths: D:/HDX, E:/conf, E:/conf/nvram, E:/conf/raw
|
||||
// Hardcoded paths: D:/HDX, E:/conf, E:/conf/nvram, E:/conf/raw, F:/update
|
||||
if (stricmp(path, "D:/HDX") == 0
|
||||
|| stricmp(path, "D:\\HDX") == 0) {
|
||||
ddrhook1_get_launcher_path_parts(&new_path, NULL);
|
||||
@ -141,6 +141,18 @@ static char *ddrhook1_filesystem_get_path(LPCTSTR path)
|
||||
ddrhook1_get_launcher_path_parts(NULL, &launcher_folder);
|
||||
conf_path = strstr(path, "conf");
|
||||
|
||||
if (conf_path && launcher_folder) {
|
||||
new_path = (char*)xmalloc(MAX_PATH);
|
||||
sprintf(new_path, "%s\\%s", launcher_folder, conf_path);
|
||||
}
|
||||
} else if (stricmp(path, "F:/update") == 0
|
||||
|| stricmp(path, "F:\\update") == 0) {
|
||||
char *launcher_folder;
|
||||
char *conf_path;
|
||||
|
||||
ddrhook1_get_launcher_path_parts(NULL, &launcher_folder);
|
||||
conf_path = strstr(path, "update");
|
||||
|
||||
if (conf_path && launcher_folder) {
|
||||
new_path = (char*)xmalloc(MAX_PATH);
|
||||
sprintf(new_path, "%s\\%s", launcher_folder, conf_path);
|
||||
|
Loading…
Reference in New Issue
Block a user