- re-applied the changes for p_spec.cpp

This is mostly map loader code which really should not operate on the global level.
This commit is contained in:
Christoph Oelckers 2019-01-24 00:02:51 +01:00
commit ac7a9183aa
12 changed files with 114 additions and 114 deletions

View file

@ -401,16 +401,6 @@ void AActor::PostSerialize()
AActor::AActor () throw()
{
}
AActor::AActor (const AActor &other) throw()
: DThinker()
{
memcpy (&snext, &other.snext, (uint8_t *)&this[1] - (uint8_t *)&snext);
}
AActor &AActor::operator= (const AActor &other)
{
memcpy (&snext, &other.snext, (uint8_t *)&this[1] - (uint8_t *)&snext);