- fixed vissprite_t &operator= declaration.

This commit is contained in:
Christoph Oelckers 2016-04-23 15:37:28 +02:00
parent 6bba84458c
commit eaabb5e986

View file

@ -88,7 +88,7 @@ struct vissprite_t
int CurrentPortalUniq; // [ZZ] to identify the portal that this thing is in. used for clipping.
vissprite_t() {}
vissprite_t &vissprite_t::operator= (const vissprite_t &o) { memcpy(this, &o, sizeof *this); return *this; }
vissprite_t &operator= (const vissprite_t &o) { memcpy(this, &o, sizeof *this); return *this; }
};
struct particle_t;