- Applied Blzut3's sbarinfo update #12:

* When the drawbar code was optimized border was accidently used as how many
  pixels to reserve from the background instead of the foreground.  I've
  reversed how the code works (bg over fg instead of fg over bg).
* Added armorclass to drawnumber.
* Added an interpolateArmor variable which acts just like interpolateHealth
  except the effect is applied to armor.
* Added armor flag to drawgem since we can interpolate armor now.
* Added a reverse flag to drawgem.
* Fixed drawgem didn't allow for '|' to separate the flags.

- Fixed: Menu texts for skill definitions unconditionally interpreted
  the given text as an index into the string table.


SVN r752 (trunk)
This commit is contained in:
Christoph Oelckers 2008-02-18 22:40:39 +00:00
commit 2a77ea0155
7 changed files with 171 additions and 80 deletions

View file

@ -2609,11 +2609,11 @@ void G_MakeEpisodes ()
static const char *hepinames[5] =
{
"MNU_COTD",
"MNU_HELLSMAW",
"MNU_DOME",
"MNU_OSSUARY",
"MNU_DEMESNE",
"$MNU_COTD",
"$MNU_HELLSMAW",
"$MNU_DOME",
"$MNU_OSSUARY",
"$MNU_DEMESNE",
};
static const char hepikeys[5] = { 'c', 'h', 'd', 'o', 's' };