From 9e3416e5980457884f0f5a631dcfd0babe88cf33 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Mon, 7 Jun 2021 19:37:40 +0300 Subject: [PATCH 53/53] Correct spaceship_init() function header It used to imply that capital-capture cancellation of spaceship is not implemented. See osdn #42460 Signed-off-by: Marko Lindqvist --- common/spaceship.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/common/spaceship.c b/common/spaceship.c index bb027d6aa6..66a8df0da9 100644 --- a/common/spaceship.c +++ b/common/spaceship.c @@ -15,7 +15,8 @@ #include #endif -#include "shared.h" /* TRUE, FALSE */ +/* utility */ +#include "shared.h" /* TRUE, FALSE */ #include "spaceship.h" @@ -89,8 +90,8 @@ const struct sship_part_info modules_info[NUM_SS_MODULES] = { }; /*******************************************************************//** - Initialize spaceship struct; could also be used to "cancel" a - spaceship (eg, if/when capital-capture effect implemented). + Initialize spaceship struct; can also be used to "cancel" a + spaceship (eg, when capital captured). ***********************************************************************/ void spaceship_init(struct player_spaceship *ship) { -- 2.30.2