From 0fdbdb1f4d2965e09af73bded58762aaa145a576 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 11 Dec 2019 18:37:01 -0800 Subject: [PATCH] remove title_id removal TODO --- libraries/libstratosphere/source/cfg/cfg_override.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/libraries/libstratosphere/source/cfg/cfg_override.cpp b/libraries/libstratosphere/source/cfg/cfg_override.cpp index a1b4ba1f6..4aef8609e 100644 --- a/libraries/libstratosphere/source/cfg/cfg_override.cpp +++ b/libraries/libstratosphere/source/cfg/cfg_override.cpp @@ -149,7 +149,6 @@ namespace ams::cfg { int OverrideConfigIniHandler(void *user, const char *section, const char *name, const char *value) { /* Taken and modified, with love, from Rajkosto's implementation. */ if (strcasecmp(section, "hbl_config") == 0) { - /* TODO: Consider deprecating "title_id" string in the future." */ if (strcasecmp(name, "program_id") == 0 || strcasecmp(name, "program_id_0") == 0) { SetHblSpecificProgramId(0, value); } else if (strcasecmp(name, "program_id_1") == 0) {