-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
continuing documentation and cleanup of map_object #343
Conversation
ready for review |
@@ -287,7 +374,7 @@ void sub_0205E580(MapObjectManager *manager) { | |||
LocalMapObject *objects = MapObjectManager_GetObjects(manager); | |||
|
|||
do { | |||
if (MapObject_IsInUse(objects) == TRUE && MapObject_GetID(objects) == 0xFF) { // todo: const (is this invalid ID? or just max?) | |||
if (MapObject_CheckActive(objects) == TRUE && MapObject_GetID(objects) == 0xFF) { // todo: const (is this invalid ID? or just max?) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably obj_player
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
possible, however I would rather have either an existing header for consts, or if there's a new one needed, valued for the other consts
also I'm not 100% sure about it, and I would like to be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no major complaints - thanks 👍
No description provided.