Skip to content

Commit

Permalink
title: updated hardcoded titles list
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkMatterCore committed Mar 31, 2024
1 parent 9e75a01 commit e3cd2a1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
8 changes: 8 additions & 0 deletions source/core/nxdt_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@ bool utilsInitializeResources(void)
break;
}

/*FsFileSystemAttribute fs_attr = {0};
if (R_SUCCEEDED(fsFsGetFileSystemAttribute(g_sdCardFileSystem, &fs_attr)))
{
LOG_DATA_INFO(&fs_attr, sizeof(FsFileSystemAttribute), "SD card FS attributes:");
}*/

/* Initialize needed services. */
if (!servicesInitialize()) break;

Expand Down Expand Up @@ -296,6 +302,8 @@ void utilsCloseResources(void)
{
SCOPED_LOCK(&g_resourcesMutex)
{
LOG_MSG_INFO("Shutting down...");

/* Unmount all custom devoptab devices. */
devoptabUnmountAllDevices();

Expand Down
10 changes: 6 additions & 4 deletions source/core/title.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,12 @@ static const TitleSystemEntry g_systemTitles[] = {
{ 0x0100000000000049, "sys_applet_unknown_04" }, ///< Placeholder.
{ 0x010000000000004A, "sys_applet_unknown_05" }, ///< Placeholder.
{ 0x010000000000004B, "sys_applet_unknown_06" }, ///< Placeholder.
{ 0x010000000000004C, "sys_applet_unknown_07" }, ///< Placeholder.
{ 0x010000000000004D, "sys_applet_unknown_08" }, ///< Placeholder.
{ 0x010000000000004E, "sys_applet_unknown_09" }, ///< Placeholder.
{ 0x010000000000004F, "sys_applet_unknown_0a" }, ///< Placeholder.
{ 0x010000000000004C, "netTc" },
{ 0x010000000000004D, "sys_applet_unknown_07" }, ///< Placeholder.
{ 0x010000000000004E, "sys_applet_unknown_08" }, ///< Placeholder.
{ 0x010000000000004F, "sys_applet_unknown_09" }, ///< Placeholder.
{ 0x0100000000000050, "ngc" },
{ 0x0100000000000051, "dmgr" },

/* System data archives. */
/* Meta + Data NCAs. */
Expand Down Expand Up @@ -455,6 +456,7 @@ static const TitleSystemEntry g_systemTitles[] = {
{ 0x010000000000D623, "DevServer" },
{ 0x010000000000D633, "msm_unknown_0f" }, ///< Placeholder.
{ 0x010000000000D640, "htcnet" },
{ 0x010000000000D65A, "netTcDev" },

/* System applications. */
{ 0x01008BB00013C000, "flog" },
Expand Down

0 comments on commit e3cd2a1

Please sign in to comment.