diff --git a/sc2/src/sc2code/element.h b/sc2/src/sc2code/element.h index 9ea3b6794..b3ef971cb 100644 --- a/sc2/src/sc2code/element.h +++ b/sc2/src/sc2code/element.h @@ -30,6 +30,9 @@ #define STARCON_TEXT_HEIGHT 7 #define TINY_TEXT_HEIGHT 9 +#define BATTLE_CREW_X 10 +#define BATTLE_CREW_Y 184 + #define NORMAL_LIFE 1 typedef QUEUE_HANDLE HELEMENT; diff --git a/sc2/src/sc2code/status.c b/sc2/src/sc2code/status.c index 97ca8c056..78f757e30 100644 --- a/sc2/src/sc2code/status.c +++ b/sc2/src/sc2code/status.c @@ -115,8 +115,8 @@ DrawBattleCrewAmount (BOOLEAN CountPlayer) TEXT t; UNICODE buf[10]; - t.baseline.x = 10; - t.baseline.y = 168; + t.baseline.x = BATTLE_CREW_X; + t.baseline.y = BATTLE_CREW_Y - SAFE_Y; t.align = ALIGN_LEFT; t.pStr = buf; t.CharCount = (COUNT)~0;