mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-05 08:49:03 +00:00
ctrtool: updated ncch/exheader code
updated ncch/exheader specs to latest format.
This commit is contained in:
@@ -47,6 +47,14 @@ filepath* settings_get_exheader_path(settings* usersettings)
|
||||
return 0;
|
||||
}
|
||||
|
||||
filepath* settings_get_logo_path(settings* usersettings)
|
||||
{
|
||||
if (usersettings)
|
||||
return &usersettings->logopath;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
filepath* settings_get_exefs_dir_path(settings* usersettings)
|
||||
{
|
||||
if (usersettings)
|
||||
@@ -200,6 +208,11 @@ void settings_set_exheader_path(settings* usersettings, const char* path)
|
||||
filepath_set(&usersettings->exheaderpath, path);
|
||||
}
|
||||
|
||||
void settings_set_logo_path(settings* usersettings, const char* path)
|
||||
{
|
||||
filepath_set(&usersettings->logopath, path);
|
||||
}
|
||||
|
||||
void settings_set_certs_path(settings* usersettings, const char* path)
|
||||
{
|
||||
filepath_set(&usersettings->certspath, path);
|
||||
|
||||
Reference in New Issue
Block a user