Restored use of the word "Target" for all target life bars in Classic mode.
At some point I replaced the "Target" text with "Sid", "Phoebe", and "Kline" for those respective characters. Classic difficulty now always uses the word "Target" once again.
This commit is contained in:
parent
dcd4fd735b
commit
5c6d4e5134
|
@ -54,9 +54,6 @@ as possible. However, there are several minor differences in addition to
|
|||
the changes to graphics, sound, and dialog. Here you can fine a list of
|
||||
notable differences.
|
||||
|
||||
* Life bars for named characters are labeled with the respective
|
||||
character's name instead of "Target".
|
||||
|
||||
* Selling your secondary weapon leaves you with standard Rockets. In
|
||||
version 1.1, it instead left you with no secondary weapon at all (with
|
||||
no way to gain standard Rockets back).
|
||||
|
|
|
@ -1996,6 +1996,12 @@ static void game_doHud()
|
|||
{
|
||||
if ((engine.targetIndex > -1) && (aliens[engine.targetIndex].shield > 0) &&
|
||||
(engine.targetIndex > engine.maxAliens))
|
||||
{
|
||||
if (game.difficulty == DIFFICULTY_ORIGINAL)
|
||||
{
|
||||
screen_blitText(TS_TARGET);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (engine.targetIndex == ALIEN_SID)
|
||||
screen_blitText(TS_TARGET_SID);
|
||||
|
@ -2005,6 +2011,7 @@ static void game_doHud()
|
|||
screen_blitText(TS_TARGET_KLINE);
|
||||
else
|
||||
screen_blitText(TS_TARGET);
|
||||
}
|
||||
|
||||
bar.w = MAX(screen->w / 800, 1);
|
||||
bar.h = 12;
|
||||
|
|
Loading…
Reference in New Issue