mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
c931cd5837
`z_title.c` : matching
21 lines
No EOL
477 B
C
21 lines
No EOL
477 B
C
#include <global.h>
|
|
|
|
void TitleSetup_InitImpl(GameState* gameState)
|
|
{
|
|
//Zelda common data initalization
|
|
osSyncPrintf("ゼルダ共通データ初期化\n");
|
|
SaveContext_Init();
|
|
gameState->running = false;
|
|
gameState->init = Title_Init; gameState->size = sizeof(TitleContext);
|
|
}
|
|
|
|
void TitleSetup_Destroy(GameState* gameState)
|
|
{
|
|
|
|
}
|
|
|
|
void TitleSetup_Init(GameState* gameState)
|
|
{
|
|
gameState->destroy = TitleSetup_Destroy;
|
|
TitleSetup_InitImpl(gameState);
|
|
} |