From: Holger Schemel Date: Fri, 31 Jan 2020 16:10:33 +0000 (+0100) Subject: removed duplicate definition of global variable X-Git-Tag: 4.2.0.0~198 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=81dbde8a570a94dd2e938eff2f52dc5a3ecced21;p=rocksndiamonds.git removed duplicate definition of global variable This would cause a compilation error with GCC 10, where "-fno-common" is set by default. --- diff --git a/src/main.c b/src/main.c index 59faa000..a85da696 100644 --- a/src/main.c +++ b/src/main.c @@ -132,7 +132,6 @@ struct LevelInfo level, level_template; struct PlayerInfo stored_player[MAX_PLAYERS], *local_player = NULL; struct HiScore highscore[MAX_SCORE_ENTRIES]; struct TapeInfo tape; -struct SetupInfo setup; struct GameInfo game; struct GlobalInfo global; struct BorderInfo border;