diff options
| author | SammygoodTunes <sygamerz@gmail.com> | 2025-05-08 14:11:29 +0200 |
|---|---|---|
| committer | SammygoodTunes <sygamerz@gmail.com> | 2025-05-08 14:11:29 +0200 |
| commit | 1eeb1b1b5421c645188ae45fd3b144de563eff00 (patch) | |
| tree | 94b1fd3d9cb1cd339173faae31911a03b0d68bee /include | |
| parent | 0d060f1d81066b141bba92578c7f839130dc1b2b (diff) | |
| parent | 48281b9f52d42a558fadebfd59c22cf69c6a9587 (diff) | |
Merge branch 'decomp/MapManager' of https://github.com/SammygoodTunes/ph into decomp/MapManager
Diffstat (limited to 'include')
| -rw-r--r-- | include/Player/TouchControl.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/Player/TouchControl.hpp b/include/Player/TouchControl.hpp index 1301e144..8970c032 100644 --- a/include/Player/TouchControl.hpp +++ b/include/Player/TouchControl.hpp @@ -5,6 +5,8 @@ #include "nds/math.h" #include "types.h" +extern u16 *data_0207aecc; + typedef u16 TouchFlags; enum TouchFlag_ { TouchFlag_TouchedNow = 0x0001, @@ -42,9 +44,11 @@ public: void Update(TouchState *state, u16 speed); bool func_ov00_0207aeac(); void UpdateConditionally(TouchState *state, u16 speed); - void func_ov00_0207af38(u16 speed, bool param2); + void func_ov00_0207af38(u16 speedIncrease, bool shouldIncrease); ~TouchControl(); static bool func_0202b864(Vec3p *param1, s32 size, unk8 param3); static bool func_0202b894(Vec3p *param1, s32 size, unk8 param3); }; + +void Fill16(int value, unsigned short *dst, int size); // TODO: Replace with header file |
