Move int to s32

This commit is contained in:
gamemasterplc 2024-05-10 20:41:02 -05:00
parent ec5f686ffb
commit 2f41ab51e7
8 changed files with 67 additions and 61 deletions

View file

@ -43,8 +43,8 @@
typedef struct seq_work SeqWork;
typedef int (*SeqUpdateFunc)(SeqWork *work);
typedef int (*SeqInitFunc)(SeqWork *work, va_list params);
typedef s32 (*SeqUpdateFunc)(SeqWork *work);
typedef s32 (*SeqInitFunc)(SeqWork *work, va_list params);
typedef struct seq_work {
SeqUpdateFunc update;