From f919af31820e3f6247fad8b875880e76d9ceb4c8 Mon Sep 17 00:00:00 2001 From: Alex Taber Date: Tue, 10 Jul 2018 21:35:40 -0400 Subject: [PATCH] Rename home_allowed to aptHomeAllowed --- libctru/source/services/apt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libctru/source/services/apt.c b/libctru/source/services/apt.c index 882cbc3..e431fa1 100644 --- a/libctru/source/services/apt.c +++ b/libctru/source/services/apt.c @@ -41,7 +41,7 @@ enum static u8 aptHomeButtonState; static u32 aptFlags = FLAG_ALLOWSLEEP; -static bool home_allowed = false; +static bool aptHomeAllowed = false; static u32 aptParameters[0x1000/4]; static u64 aptChainloadTid; static u8 aptChainloadMediatype; @@ -270,12 +270,12 @@ void aptSetSleepAllowed(bool allowed) bool aptIsHomeAllowed(void) { - return home_allowed; + return aptHomeAllowed; } void aptSetHomeAllowed(bool allowed) { - home_allowed = allowed; + aptHomeAllowed = allowed; } void aptSetChainloader(u64 programID, u8 mediatype)