diff options
| author | Filip Gawin <filip.gawin@zoho.com> | 2021-01-31 20:44:39 +0100 |
|---|---|---|
| committer | Filip Gawin <filip.gawin@zoho.com> | 2021-01-31 20:44:39 +0100 |
| commit | 7a3b80a9b7f414967fe59f89ab0fe5416735babe (patch) | |
| tree | a84fb5e1dbdb00959d6916594d43b9c82c9bef23 /src/entities/Entity.cpp | |
| parent | fix realloc (diff) | |
| download | re3-7a3b80a9b7f414967fe59f89ab0fe5416735babe.tar.gz | |
First batch of fixes (CallAndMessage)
Diffstat (limited to 'src/entities/Entity.cpp')
| -rw-r--r-- | src/entities/Entity.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/entities/Entity.cpp b/src/entities/Entity.cpp index 4885d631..dc70a31a 100644 --- a/src/entities/Entity.cpp +++ b/src/entities/Entity.cpp @@ -504,6 +504,9 @@ CEntity::Add(void) case ENTITY_TYPE_DUMMY: list = &s->m_lists[ENTITYLIST_DUMMIES_OVERLAP]; break; +#ifdef FIX_BUGS + default: debug("This shouldn't happen"); return; +#endif } list->InsertItem(this); } @@ -564,6 +567,9 @@ CEntity::Remove(void) case ENTITY_TYPE_DUMMY: list = &s->m_lists[ENTITYLIST_DUMMIES_OVERLAP]; break; +#ifdef FIX_BUGS + default: debug("This shouldn't happen"); return; +#endif } list->RemoveItem(this); } |
