mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 06:53:40 +00:00
- Added missing Strife automap colors for items and non-monsters.
SVN r1204 (trunk)
This commit is contained in:
parent
2df65c70cb
commit
6766f47801
2 changed files with 8 additions and 7 deletions
|
@ -1,4 +1,5 @@
|
||||||
September 7, 2008 (Changes by Graf Zahl)
|
September 7, 2008 (Changes by Graf Zahl)
|
||||||
|
- Added missing Strife automap colors for items and non-monsters.
|
||||||
- Fixed: GetMSLength didn't resolve random and player sounds.
|
- Fixed: GetMSLength didn't resolve random and player sounds.
|
||||||
- Moved sound aliasing code out of fmodsound.cpp into S_LoadSound.
|
- Moved sound aliasing code out of fmodsound.cpp into S_LoadSound.
|
||||||
|
|
||||||
|
|
|
@ -97,7 +97,7 @@ static BYTE StrifePaletteVals[11*3] =
|
||||||
0x00,0x00,0x00, 239, 239, 0, 0x10,0x10,0x10,
|
0x00,0x00,0x00, 239, 239, 0, 0x10,0x10,0x10,
|
||||||
199, 195, 195, 119, 115, 115, 55, 59, 91,
|
199, 195, 195, 119, 115, 115, 55, 59, 91,
|
||||||
119, 115, 115, 0xfc,0x00,0x00, 0x4c,0x4c,0x4c,
|
119, 115, 115, 0xfc,0x00,0x00, 0x4c,0x4c,0x4c,
|
||||||
0x80,0x80,0x80, 0x6c,0x6c,0x6c
|
187, 59, 0, 219, 171, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MAPBITS 12
|
#define MAPBITS 12
|
||||||
|
@ -751,13 +751,13 @@ static void AM_initColors (bool overlayed)
|
||||||
FDWallColor = StrifeColors[5];
|
FDWallColor = StrifeColors[5];
|
||||||
LockedColor =
|
LockedColor =
|
||||||
CDWallColor = StrifeColors[6];
|
CDWallColor = StrifeColors[6];
|
||||||
ThingColor_Item =
|
ThingColor_Item = StrifeColors[10];
|
||||||
ThingColor_Friend =
|
ThingColor_Friend =
|
||||||
ThingColor_Monster =
|
ThingColor_Monster = StrifeColors[7];
|
||||||
ThingColor = StrifeColors[7];
|
ThingColor = StrifeColors[9];
|
||||||
GridColor = StrifeColors[8];
|
GridColor = StrifeColors[8];
|
||||||
XHairColor = StrifeColors[9];
|
XHairColor = DoomColors[9];
|
||||||
NotSeenColor = StrifeColors[10];
|
NotSeenColor = DoomColors[10];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue