summaryrefslogtreecommitdiff
path: root/include/Cutscene
diff options
context:
space:
mode:
authorYanis <35189056+Yanis002@users.noreply.github.com>2025-07-22 16:17:02 +0200
committerGitHub <noreply@github.com>2025-07-22 16:17:02 +0200
commitcf8f5a80b13c4edd7fd8ebb33ab0de81d64f609b (patch)
treea9ec152f01d7fa0760aa26a69dec69b4c77dce86 /include/Cutscene
parent383ca6aaa2b322869fe304eb5c277150859bfcc0 (diff)
Decompile more of `AdventureFlags.cpp` (#118)
* fix flags getters and associated relocs * explicit ARM and improve existing matches * match CopyTo * document a bit the flag system and progress on unmatched functions * remaining bottom functions * func_ov00_02097810 params and name fix * fix build issues * move flag base definition to its own file * document item flags --------- Co-authored-by: Yanis002 <Yanis002@users.noreply.github.com> Co-authored-by: Aetias <aetias@outlook.com>
Diffstat (limited to 'include/Cutscene')
-rw-r--r--include/Cutscene/CutsceneHandler.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Cutscene/CutsceneHandler.hpp b/include/Cutscene/CutsceneHandler.hpp
index 035638a7..85f918a5 100644
--- a/include/Cutscene/CutsceneHandler.hpp
+++ b/include/Cutscene/CutsceneHandler.hpp
@@ -43,6 +43,12 @@ public:
/* 88 */ s32 mUnk_88;
/* 8c */
+ void SetFlags(s32 value) {
+ mFlags1 &= value;
+ mFlags2 &= value;
+ }
+
+ void func_ov000_020980f8();
s32 func_ov000_020980fc(unk32 param1, unk32 param2, void **param3);
bool func_ov000_02098114();
bool SkipCutscene(s32 param1);