mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 07:11:06 -04:00
877889c510
* Remove NDEBUG_DEFINED fakematch, clean up getName temps * Fix ifdef * Fix bad JSystem pch ifdef breaking decomp.me * Remove Acch Chk fakematches * Private Acch fields * Fix some clangd errors in headers * Add UNUSED macro for matching debug parameters * Enable clangd unused-parameter warning * Remove extern from initializers Probably added by dol2asm? * Fix process profile definitions * Remove leftover dol2asm address comments * Remove some unnecessary double casts * Enable some more clangd warnings * Fix missing usages of fopAcM_ct * Fix wrong enum usage * Fix more fakematches
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
/**
|
|
* d_s_title.cpp
|
|
* Title Screen Scene
|
|
*/
|
|
|
|
#include "d/dolzel.h" // IWYU pragma: keep
|
|
|
|
#include "d/d_s_title.h"
|
|
#include "f_op/f_op_scene.h"
|
|
#include "f_pc/f_pc_leaf.h"
|
|
|
|
scene_process_profile_definition g_profile_WARNING_SCENE = {
|
|
fpcLy_ROOT_e, // mLayerID
|
|
1, // mListID
|
|
fpcPi_CURRENT_e, // mListPrio
|
|
PROC_WARNING_SCENE, // mProcName
|
|
&g_fpcNd_Method.base, // sub_method
|
|
0x204, // mSize
|
|
0, // mSizeOther
|
|
0, // mParameters
|
|
&g_fopScn_Method.base, // sub_method
|
|
NULL, // mpMtd
|
|
};
|
|
|
|
scene_process_profile_definition g_profile_WARNING2_SCENE = {
|
|
fpcLy_ROOT_e, // mLayerID
|
|
1, // mListID
|
|
fpcPi_CURRENT_e, // mListPrio
|
|
PROC_WARNING2_SCENE, // mProcName
|
|
&g_fpcNd_Method.base, // sub_method
|
|
0x204, // mSize
|
|
0, // mSizeOther
|
|
0, // mParameters
|
|
&g_fopScn_Method.base, // sub_method
|
|
NULL, // mpMtd
|
|
};
|