From 637ab14ae6e42d656ad0a920487014e11461d76a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 14 Sep 2020 19:04:49 -0400 Subject: patch_manager: Make a few functions internally linked These functions are only used within this translation unit, so we can make them internally linked. --- src/core/file_sys/patch_manager.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/core/file_sys/patch_manager.h') diff --git a/src/core/file_sys/patch_manager.h b/src/core/file_sys/patch_manager.h index 532f4995f..92a7c6e04 100644 --- a/src/core/file_sys/patch_manager.h +++ b/src/core/file_sys/patch_manager.h @@ -22,18 +22,6 @@ namespace FileSys { class NCA; class NACP; -enum class TitleVersionFormat : u8 { - ThreeElements, ///< vX.Y.Z - FourElements, ///< vX.Y.Z.W -}; - -std::string FormatTitleVersion(u32 version, - TitleVersionFormat format = TitleVersionFormat::ThreeElements); - -// Returns a directory with name matching name case-insensitive. Returns nullptr if directory -// doesn't have a directory with name. -VirtualDir FindSubdirectoryCaseless(VirtualDir dir, std::string_view name); - // A centralized class to manage patches to games. class PatchManager { public: -- cgit v1.2.3