From a622448029e7849361d2aabcd2138ed0de207dd1 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Sun, 5 Apr 2020 20:30:45 -0400 Subject: More quest log documentation amid other stuff --- include/constants/quest_log.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'include/constants/quest_log.h') diff --git a/include/constants/quest_log.h b/include/constants/quest_log.h index b5494e7b9..b6f8dc319 100644 --- a/include/constants/quest_log.h +++ b/include/constants/quest_log.h @@ -2,9 +2,14 @@ #define GUARD_CONSTANTS_QUEST_LOG_H // TODO: Name and use state constants -#define QL_STATE_1 1 -#define QL_STATE_2 2 -#define QL_STATE_3 3 +#define QL_STATE_RECORDING 1 +#define QL_STATE_PLAYBACK 2 +#define QL_STATE_PLAYBACK_LAST 3 + +#define QL_START_NORMAL 1 +#define QL_START_WARP 2 + +#define QL_IS_PLAYBACK_STATE (gQuestLogState == QL_STATE_PLAYBACK || gQuestLogState == QL_STATE_PLAYBACK_LAST) #define QL_EVENT_0 0 // Null #define QL_EVENT_1 1 // Null -- cgit v1.2.3 From 61a06dffe79d03c0d57f70db646655c74af7147a Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Fri, 10 Apr 2020 10:57:20 -0400 Subject: Address review comments --- include/constants/quest_log.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/constants/quest_log.h') diff --git a/include/constants/quest_log.h b/include/constants/quest_log.h index b6f8dc319..3565c581e 100644 --- a/include/constants/quest_log.h +++ b/include/constants/quest_log.h @@ -1,7 +1,6 @@ #ifndef GUARD_CONSTANTS_QUEST_LOG_H #define GUARD_CONSTANTS_QUEST_LOG_H -// TODO: Name and use state constants #define QL_STATE_RECORDING 1 #define QL_STATE_PLAYBACK 2 #define QL_STATE_PLAYBACK_LAST 3 -- cgit v1.2.3