Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #960 from lioncash/preproc-stuff
Common: Make TITLEID_SYSMENU a static const variable in NandPaths.h
  • Loading branch information
shuffle2 committed Sep 3, 2014
2 parents 29ef22f + a687cc5 commit 05cd065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Common/NandPaths.h
Expand Up @@ -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
{
Expand Down

0 comments on commit 05cd065

Please sign in to comment.