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
This commit is contained in:
LagoLunatic
2026-05-26 00:11:58 -04:00
committed by GitHub
parent 79277cb2b2
commit 102042628f
540 changed files with 9562 additions and 10530 deletions
+4 -5
View File
@@ -6,7 +6,6 @@
#include "d/dolzel.h" // IWYU pragma: keep
#include "d/d_event_manager.h"
#include "d/d_com_inf_game.h"
#include "d/d_procname.h"
enum {
ACT_WAIT,
@@ -688,13 +687,13 @@ fopAc_ac_c* dEvent_manager_c::specialCast(const char* name, int flag) {
return NULL;
if (strcmp(name, "SHUTTER_DOOR") == 0) {
actor = specialCast_Shutter(PROC_DOOR10, flag);
actor = specialCast_Shutter(fpcNm_DOOR10_e, flag);
if (actor == NULL)
actor = specialCast_Shutter(PROC_DOOR12, flag);
actor = specialCast_Shutter(fpcNm_DOOR12_e, flag);
if (actor == NULL)
actor = specialCast_Shutter(PROC_KDDOOR, flag);
actor = specialCast_Shutter(fpcNm_KDDOOR_e, flag);
if (actor == NULL)
actor = specialCast_Shutter(PROC_KNOB00, flag);
actor = specialCast_Shutter(fpcNm_KNOB00_e, flag);
if (actor != NULL)
dComIfGp_event_onEventFlag(0x10);
}