diff options
| author | Elijah Thomas <42302100+elijah-thomas774@users.noreply.github.com> | 2026-04-18 09:16:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-18 09:16:02 -0400 |
| commit | 17176e3c8334ea0c46fa293a9c463a02789d6d7b (patch) | |
| tree | 2639718817f3882496dc380978e5a48be8300a18 /include/d | |
| parent | 124935c073861c40f412e1bc0bfb880f5ded7693 (diff) | |
| parent | f05d556cf90f4073818117187017be4a9bcdbb13 (diff) | |
Merge pull request #308 from bgsamm/d_state
Matches for d_state.cpp, m_state.cpp, m_thread.cpp, eggSystem.cpp, and eggUnk.cpp
Diffstat (limited to 'include/d')
| -rw-r--r-- | include/d/d_main.h | 4 | ||||
| -rw-r--r-- | include/d/d_state.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/d/d_main.h b/include/d/d_main.h index 57332fe9..e2025659 100644 --- a/include/d/d_main.h +++ b/include/d/d_main.h @@ -5,6 +5,10 @@ namespace dMain { +bool isStopFlagSet(u32 val); +void setStopFlag(u32 val); +void clearStopFlag(u32 val); + void Create(); void Execute(); void *main01(void *arg); diff --git a/include/d/d_state.h b/include/d/d_state.h index b6384b7d..f539ea2b 100644 --- a/include/d/d_state.h +++ b/include/d/d_state.h @@ -8,6 +8,6 @@ void fn_80062E50(); void fn_80062EB0(); bool fn_80062EC0(); -} +} // namespace dState #endif // D_STATE_H |
