From a8665d204255b4b0ad9ae6982f77ecd5e053c1b6 Mon Sep 17 00:00:00 2001 From: Piotr Dziwinski Date: Mon, 11 Jun 2012 17:28:27 +0200 Subject: Changed #defined constants to consts; typedef struct -> struct --- src/graphics/common/planet.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/graphics/common/planet.h') diff --git a/src/graphics/common/planet.h b/src/graphics/common/planet.h index 75af350..fd2f0f2 100644 --- a/src/graphics/common/planet.h +++ b/src/graphics/common/planet.h @@ -27,9 +27,9 @@ class CD3DEngine; -#define MAXPLANET 10 +const int MAXPLANET = 10; -typedef struct +struct Planet { char bUsed; // true -> planet exists FPOINT start; // initial position in degrees @@ -40,8 +40,7 @@ typedef struct char name[20]; // name of the texture FPOINT uv1, uv2; // texture mapping char bTGA; // texture .TGA -} -Planet; +}; -- cgit v1.2.3-1-g7c22