summaryrefslogtreecommitdiff
path: root/include/f
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2025-02-27 02:54:21 +0100
committerGitHub <noreply@github.com>2025-02-26 20:54:21 -0500
commitc2b2d9700c47c1eb4c6026fee14d1d9b247f8fe8 (patch)
tree025738406df46197b4ba782b6637b5ca5c5145cf /include/f
parent6269e826598371fd7683dca5089df17536161f14 (diff)
d_scene OK (#114)
* d_scene OK * d_s_boot * Rename -> PROFILE_MAX * Some more ---------
Diffstat (limited to 'include/f')
-rw-r--r--include/f/f_profile.h2
-rw-r--r--include/f/f_profile_name.h3
2 files changed, 2 insertions, 3 deletions
diff --git a/include/f/f_profile.h b/include/f/f_profile.h
index b887d216..15b73080 100644
--- a/include/f/f_profile.h
+++ b/include/f/f_profile.h
@@ -84,7 +84,7 @@ struct fActorProfile_c /* : fBaseProfile_c */ {
u32 mActorProperties; ///< Some actor-related properties. @todo Document the bitfield.
};
-extern const fBaseProfile_c *(*sProfileList)[NUMBER_OF_ACTORS]; ///< A list of all profiles.
+extern const fBaseProfile_c *(*sProfileList)[PROFILE_MAX]; ///< A list of all profiles.
} // namespace fProfile
diff --git a/include/f/f_profile_name.h b/include/f/f_profile_name.h
index 8ca2e818..1601c805 100644
--- a/include/f/f_profile_name.h
+++ b/include/f/f_profile_name.h
@@ -707,8 +707,7 @@ enum PROFILE_NAME_e {
/* 700 (0x2BC) */ BOOT,
/* 701 (0x2BD) */ ROOM,
/* 702 (0x2BE) */ LAST,
- /* 703 */ NUMBER_OF_ACTORS,
- INVALID,
+ /* 703 */ PROFILE_MAX,
};
}