mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- fixed: The check for old incompatible savegames with dialogues was wrong.
SVN r2562 (trunk)
This commit is contained in:
parent
b452bec0ee
commit
1460b8feed
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ void AActor::Serialize (FArchive &arc)
|
|||
int convnum;
|
||||
|
||||
convnum = arc.ReadCount();
|
||||
if (convnum == 0)
|
||||
if (GetConversation(GetClass()->TypeName) == -1)
|
||||
{
|
||||
Conversation = NULL;
|
||||
ConversationRoot = -1;
|
||||
|
|
Loading…
Reference in a new issue