summaryrefslogtreecommitdiff
path: root/src/d/d_level_se.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2026-05-26 00:11:58 -0400
committerGitHub <noreply@github.com>2026-05-26 00:11:58 -0400
commit102042628fa139f4e509251bdd9095493f031e28 (patch)
treea5b37fcd76d8c0105f2e9b379b7e2daa7eae2266 /src/d/d_level_se.cpp
parent79277cb2b2672104b87172d8ff620f923f450658 (diff)
Process profiles and enums cleanup (#1031)
* Fix some profile comments * Add missing static for local visibility data * Move proc name and draw priority enums to f_pc * Add _e suffix to daObjBarrier_c proc enum * Change proc name enum format to match TP * Change draw prio enum format to match TP * Change ItemNo enum format, finish fixing item names * Revert static for cb1 hio * Clean up formatting of profile comments * Fix comment alignment
Diffstat (limited to 'src/d/d_level_se.cpp')
-rw-r--r--src/d/d_level_se.cpp26
1 files changed, 12 insertions, 14 deletions
diff --git a/src/d/d_level_se.cpp b/src/d/d_level_se.cpp
index ad37473e..823621a0 100644
--- a/src/d/d_level_se.cpp
+++ b/src/d/d_level_se.cpp
@@ -5,10 +5,8 @@
#include "d/dolzel.h" // IWYU pragma: keep
#include "d/d_level_se.h"
-#include "d/d_priority.h"
#include "f_op/f_op_kankyo.h"
#include "f_op/f_op_kankyo_mng.h"
-#include "d/d_procname.h"
#include "m_Do/m_Do_audio.h"
/* 80199308-801993CC .text dLevelSe_Execute__FP10dLevelSe_c */
@@ -43,7 +41,7 @@ static cPhs_State dLevelSe_Create(kankyo_class*) {
return cPhs_COMPLEATE_e;
}
-kankyo_method_class l_dLevelSe_Method = {
+static kankyo_method_class l_dLevelSe_Method = {
(process_method_func)dLevelSe_Create,
(process_method_func)dLevelSe_Delete,
(process_method_func)dLevelSe_Execute,
@@ -51,15 +49,15 @@ kankyo_method_class l_dLevelSe_Method = {
};
kankyo_process_profile_definition g_profile_LEVEL_SE = {
- /* LayerID */ fpcLy_CURRENT_e,
- /* ListID */ 0x0002,
- /* ListPrio */ fpcPi_CURRENT_e,
- /* ProcName */ PROC_LEVEL_SE,
- /* Proc SubMtd */ &g_fpcLf_Method.base,
- /* Size */ sizeof(dLevelSe_c),
- /* SizeOther */ 0,
- /* Parameters */ 0,
- /* Leaf SubMtd */ &g_fopKy_Method,
- /* Priority */ PRIO_LEVEL_SE,
- /* Actor SubMtd */ &l_dLevelSe_Method,
+ /* Layer ID */ fpcLy_CURRENT_e,
+ /* List ID */ 0x0002,
+ /* List Prio */ fpcPi_CURRENT_e,
+ /* Proc Name */ fpcNm_LEVEL_SE_e,
+ /* Proc SubMtd */ &g_fpcLf_Method.base,
+ /* Size */ sizeof(dLevelSe_c),
+ /* Size Other */ 0,
+ /* Parameters */ 0,
+ /* Leaf SubMtd */ &g_fopKy_Method,
+ /* Draw Prio */ fpcDwPi_LEVEL_SE_e,
+ /* Kankyo SubMtd */ &l_dLevelSe_Method,
};