mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-04 16:59:02 +00:00
Fixes issue #39
This commit is contained in:
+13
-13
@@ -104,14 +104,6 @@ filepath* settings_get_tmd_path(settings* usersettings)
|
||||
return 0;
|
||||
}
|
||||
|
||||
filepath* settings_get_meta_path(settings* usersettings)
|
||||
{
|
||||
if (usersettings)
|
||||
return &usersettings->metapath;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
filepath* settings_get_content_path(settings* usersettings)
|
||||
{
|
||||
if (usersettings)
|
||||
@@ -120,6 +112,14 @@ filepath* settings_get_content_path(settings* usersettings)
|
||||
return 0;
|
||||
}
|
||||
|
||||
filepath* settings_get_meta_path(settings* usersettings)
|
||||
{
|
||||
if (usersettings)
|
||||
return &usersettings->metapath;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
filepath* settings_get_plainrgn_path(settings* usersettings)
|
||||
{
|
||||
if (usersettings)
|
||||
@@ -243,16 +243,16 @@ void settings_set_tmd_path(settings* usersettings, const char* path)
|
||||
filepath_set(&usersettings->tmdpath, path);
|
||||
}
|
||||
|
||||
void settings_set_meta_path(settings* usersettings, const char* path)
|
||||
{
|
||||
filepath_set(&usersettings->metapath, path);
|
||||
}
|
||||
|
||||
void settings_set_content_path(settings* usersettings, const char* path)
|
||||
{
|
||||
filepath_set(&usersettings->contentpath, path);
|
||||
}
|
||||
|
||||
void settings_set_meta_path(settings* usersettings, const char* path)
|
||||
{
|
||||
filepath_set(&usersettings->metapath, path);
|
||||
}
|
||||
|
||||
void settings_set_exefs_dir_path(settings* usersettings, const char* path)
|
||||
{
|
||||
filepath_set(&usersettings->exefsdirpath, path);
|
||||
|
||||
Reference in New Issue
Block a user