diff options
| author | Tharo <17233964+Thar0@users.noreply.github.com> | 2021-10-29 19:30:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-29 15:30:48 -0300 |
| commit | b1b114e142f05443524d91b4127d9bf97fe75a28 (patch) | |
| tree | 5ce14d46785f45f07819ef20bc0b810746b3e0c1 /src/code/title_setup.c | |
| parent | 38fc110f9987d967f6a25e75220dbf995ff03600 (diff) | |
Decompile graph.c (#274)
* Decompiled, 1 non-matching, add some bss reordering helpers
* Document stuff
* Review suggestions
* graphutil.c -> graphalloc.c
* Try to fix fault callback warnings
* Remove extra comments in GfxMasterList
* char pad -> u32 pad
Co-authored-by: Derek Hensley <hensley.derek58@gmail.com>
* Fix gameState
Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com>
* Other suggestions
Co-authored-by: Derek Hensley <hensley.derek58@gmail.com>
Co-authored-by: engineer124 <47598039+engineer124@users.noreply.github.com>
Diffstat (limited to 'src/code/title_setup.c')
| -rw-r--r-- | src/code/title_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/title_setup.c b/src/code/title_setup.c index 324f8df3e..7df67a3b2 100644 --- a/src/code/title_setup.c +++ b/src/code/title_setup.c @@ -62,6 +62,6 @@ void TitleSetup_Destroy(GameState* gameState) { } void TitleSetup_Init(GameState* gameState) { - gameState->destroy = &TitleSetup_Destroy; + gameState->destroy = TitleSetup_Destroy; TitleSetup_InitImpl(gameState); } |
