diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-07-23 12:43:43 +0200 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-07-25 22:45:55 +0200 |
| commit | 852effa474c159398014da736ade6f0fea454de7 (patch) | |
| tree | 97da22c4758ca4156dc9fb7ac123c7a3b0a9e9f5 /include/main.h | |
| parent | ccba86d292a0e4c8a0e07325ac4fb25e5a58dc89 (diff) | |
Rename objects
Diffstat (limited to 'include/main.h')
| -rw-r--r-- | include/main.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/include/main.h b/include/main.h index 3017b9ab..4d70beb7 100644 --- a/include/main.h +++ b/include/main.h @@ -65,7 +65,7 @@ typedef struct { u8 pauseCount; /**< Number of pauses to make. */ u8 pauseInterval; /**< Number of frames to play between each pause. */ u8 pad; - union SplitHWord ticks; /**< Current time. */ + u16 ticks; /**< Current time. */ } Main; /** @@ -127,15 +127,17 @@ void DoSoftReset(void); */ void SetSleepMode(void); -extern void sub_0805622C(struct BgAffineDstData* a1, u32 a2, u32 a3); -extern void sub_08056208(void); +/** + * Sets a DMA to be performed at next VBlank. + */ +extern void SetVBlankDMA(u16* src, u16* dest, u32 size); +extern void InitVBlankDMA(void); extern void ResetPalettes(void); extern void VBlankIntrWait(); extern void VBlankInterruptWait(void); extern void DisableInterruptsAndDMA(void); extern void EnableVBlankIntr(void); -extern void sub_08056250(void); -extern void sub_08056208(void); +extern void DisableVBlankDMA(void); /** @name Task entrypoints */ ///@{ |
