mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- removed incorrect assert.
This assert disallowed pointers to non GC'd objects, which on some occasions can happen and must be allowed.
This commit is contained in:
parent
d911fa99a1
commit
5a054da4d9
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ void Mark(DObject **obj)
|
|||
{
|
||||
DObject *lobj = *obj;
|
||||
|
||||
assert(lobj == nullptr || !(lobj->ObjectFlags & OF_Released));
|
||||
//assert(lobj == nullptr || !(lobj->ObjectFlags & OF_Released));
|
||||
if (lobj != nullptr && !(lobj->ObjectFlags & OF_Released))
|
||||
{
|
||||
if (lobj->ObjectFlags & OF_EuthanizeMe)
|
||||
|
|
Loading…
Reference in a new issue