From 50b558bcc82a7bd66408701e7c99b09cf8be16fa Mon Sep 17 00:00:00 2001 From: mcmartin Date: Sat, 5 Jul 2003 09:50:35 +0000 Subject: [PATCH] Homeworld conversations now request a crossfade (Bug #348) git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1018 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/ChangeLog | 1 + sc2/src/sc2code/planets/solarsys.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/sc2/ChangeLog b/sc2/ChangeLog index d61bca47c..19fa20ee4 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,5 @@ Changes towards version 0.3: +- Fixed screen transitions from homeworld conversations (bug #348) -Michael - Fixed Fwiffo join_us_refusals initialization (bug #405) -Mika - Fix Druuge transactions to not elevate crew costs baselessly (bug #235), from ghakko diff --git a/sc2/src/sc2code/planets/solarsys.c b/sc2/src/sc2code/planets/solarsys.c index 0eb75f371..882e6e352 100644 --- a/sc2/src/sc2code/planets/solarsys.c +++ b/sc2/src/sc2code/planets/solarsys.c @@ -1355,9 +1355,12 @@ StartGroups: if (pSolarSysState->MenuState.flash_task == 0) { + /* Note! This implies that our GenFunc was a + conversation; that is, that this is a homeworld */ LoadSolarSys (); ValidateOrbits (); DrawInnerSystem (); + draw_sys_flags |= UNBATCH_SYS; goto StartGroups; }