-
The game crashes on my machine in ControlWussie::think when the weapon_in_range variable is evaluated without being initialized.
The declaration of the variable:
bool weapon_in_range;
needs to be:
bool weapon_in_range = false;
-Winkrometer.
2007-12-05 07:29:23 UTC by nobody
-
The game crashes on my machine in ControlWussie::think when the weapon_in_range variable is evaluated without being initialized.
The declaration of the variable:
bool weapon_in_range;
needs to be:
bool weapon_in_range = false;
-Winkrometer.
2007-12-05 05:38:35 UTC by nobody
-
When you first start melee against the computer, your fleet is in a different order than after your first battle. The fleet gets sorted to alphabetical after the first ship battle finishes.
The fix is to sort the fleet at the start as well. Details follow.
mmain.cpp
NormalGame::init_players
if ( player[i]->islocal() )
{
player[i]->fleet->load("fleets.ini", sect);
}...
2007-12-05 05:25:44 UTC by nobody
-
I installed the source project, converted it to VS2008, and did a clean compile.
Many irrelevant build warnings appeared which I simply ignored, but there were some valid bugs found by the build.
aastr.c @30 should appear as follows
[parens missing]
#define bit(a) (1
2007-12-01 06:53:37 UTC by nobody
-
was not able to make a network connection for network play.
2007-06-20 12:41:46 UTC by flexmaen
-
yurand committed patchset 538 of module source to the Star Control: TimeWarp CVS repository, changing 1 files.
2007-04-23 22:36:32 UTC by yurand
-
yurand committed patchset 537 of module source to the Star Control: TimeWarp CVS repository, changing 15 files.
2007-04-16 23:55:31 UTC by yurand
-
yurand committed patchset 18 of module interfaces to the Star Control: TimeWarp CVS repository, changing 1 files.
2007-04-16 23:55:31 UTC by yurand
-
Game halts when choosing options for Hosting a
multiplayer game.
Steps to reproduce:
1. Start game.
2. From main menu, click Host.
3. Game displays options to start the game; mouse can move.
4. Within 2 seconds, the mouse cannot move, keys do not
respond and the music gets stuck. The game is in an
infinite loop or something. (This is the issue)
2006-10-27 04:48:39 UTC by youbastrd
-
Game halts when starting SC1Arena game mode.
Steps to reproduce:
1. Start game.
2. From main menu, click SC1Arena.
3. Game displays options to start the game; mouse can move.
4. Within 2 seconds, the mouse cannot move, keys do not
respond and the music gets stuck. The game is in an
infinite loop or something. (This is the issue)
2006-10-27 04:46:07 UTC by youbastrd