Files
dusklight/src/d/d_s_title.cpp
T
LagoLunatic 6ec6fce8cb Fix JUT_ASSERT and several other macros (#2711)
* Fix JUT_ASSERT to be a nested define

* Switch names that appear in asserts to be constants instead of defines

* Replace `0` in asserts with `NULL` or `FALSE`

* Fix fpclassify

* Fix ARRAY_SIZE

* Use G_CM3D_F_INF

* More fixes for fpclassify

* Remove FLOAT_LABEL

* Remove incorrect FLAG_ON macro

* Remove UNK_BSS macro

* Silence clangd unused header warning for PCH
2025-09-28 13:11:07 -07:00

39 lines
1.5 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"
/* 803C32B0-803C32D8 -00001 0028+00 0/0 0/0 1/0 .data g_profile_WARNING_SCENE */
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
};
/* 803C32D8-803C3300 -00001 0028+00 0/0 0/0 1/0 .data g_profile_WARNING2_SCENE */
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
};