From eaabb5e986362dd5af5b00cb270360de5a2ba23b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 23 Apr 2016 15:37:28 +0200 Subject: [PATCH] - fixed vissprite_t &operator= declaration. --- src/r_things.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_things.h b/src/r_things.h index 64dcb82b8..ee60e1bce 100644 --- a/src/r_things.h +++ b/src/r_things.h @@ -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;