| 584 | } |
| 585 | |
| 586 | void DObject::CheckIfSerialized () const |
| 587 | { |
| 588 | if (!(ObjectFlags & OF_SerialSuccess)) |
| 589 | { |
| 590 | I_Error ( |
| 591 | "BUG: %s::Serialize\n" |
| 592 | "(or one of its superclasses) needs to call\n" |
| 593 | "Super::Serialize\n", |
| 594 | StaticType()->TypeName.GetChars()); |
| 595 | } |
| 596 | } |
| 597 | |
| 598 | DEFINE_ACTION_FUNCTION(DObject, MSTime) |
| 599 | { |
no test coverage detected