From b57ec74ca3fc7e3ed083bdeaf189828d7831738d Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 27 Feb 2019 03:33:42 -0800 Subject: [PATCH] pm: remove duplicate definitions --- stratosphere/pm/source/pm_boot2.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/stratosphere/pm/source/pm_boot2.cpp b/stratosphere/pm/source/pm_boot2.cpp index 6541ae62f..fc739c88e 100644 --- a/stratosphere/pm/source/pm_boot2.cpp +++ b/stratosphere/pm/source/pm_boot2.cpp @@ -27,20 +27,6 @@ #include "pm_registration.hpp" #include "pm_boot_mode.hpp" -static std::vector g_boot2_titles; - -static void ClearLaunchedTitles() { - g_boot2_titles.clear(); -} - -static void SetLaunchedTitle(Boot2KnownTitleId title_id) { - g_boot2_titles.push_back(title_id); -} - -static bool HasLaunchedTitle(Boot2KnownTitleId title_id) { - return std::find(g_boot2_titles.begin(), g_boot2_titles.end(), title_id) != g_boot2_titles.end(); -} - static std::vector g_launched_titles; static bool IsHexadecimal(const char *str) {