From a687cc556b80cc78586bf909031ddcf411f09a90 Mon Sep 17 00:00:00 2001 From: lioncash Date: Wed, 3 Sep 2014 18:00:41 -0400 Subject: [PATCH] Common: Make TITLEID_SYSMENU a static const variable in NandPaths.h --- Source/Core/Common/NandPaths.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/NandPaths.h b/Source/Core/Common/NandPaths.h index 60e78615a0..bd76d5d2d2 100644 --- a/Source/Core/Common/NandPaths.h +++ b/Source/Core/Common/NandPaths.h @@ -10,8 +10,8 @@ #include "Common/CommonTypes.h" -#define TITLEID_SYSMENU 0x0000000100000002ull -const static std::string TITLEID_SYSMENU_STRING = "0000000100000002"; +static const u64 TITLEID_SYSMENU = 0x0000000100000002; +static const std::string TITLEID_SYSMENU_STRING = "0000000100000002"; namespace Common {