mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 23:15:06 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
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"
|
|
|
|
extern 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
|
|
};
|
|
|
|
extern 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
|
|
};
|