Invert skip room proc obj (#605)

* Invert functionality of obj room proc to be opt-in

* Fixed comment for enabling profiler
This commit is contained in:
thecozies
2023-03-15 09:49:07 -05:00
committed by GitHub
parent 17498e081d
commit c09103d456
3 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ enum ObjFlags {
OBJ_FLAG_OCCLUDE_SILHOUETTE = (1 << 20), // 0x00100000
OBJ_FLAG_OPACITY_FROM_CAMERA_DIST = (1 << 21), // 0x00200000
OBJ_FLAG_EMIT_LIGHT = (1 << 22), // 0x00400000
OBJ_FLAG_PROCESS_OUTSIDE_ROOM = (1 << 23), // 0x00800000
OBJ_FLAG_ONLY_PROCESS_INSIDE_ROOM = (1 << 23), // 0x00800000
OBJ_FLAG_HITBOX_WAS_SET = (1 << 30), // 0x40000000
};