diff options
author | rubidium <rubidium@openttd.org> | 2007-03-20 16:32:41 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-03-20 16:32:41 +0000 |
commit | d384260ba5a1c97a814ed4f3004c08243495c624 (patch) | |
tree | 37cba235190865c1b1f19fc03742458043954869 /src | |
parent | 9f7f58bdfc79ad13f614f0ab14f117f4575b9871 (diff) | |
download | openttd-d384260ba5a1c97a814ed4f3004c08243495c624.tar.xz |
(svn r9376) -Fix (r8969): off-by-one error for the amount of mouth pieces for men.
Diffstat (limited to 'src')
-rw-r--r-- | src/player_face.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/player_face.h b/src/player_face.h index b2305bb09..752ab455f 100644 --- a/src/player_face.h +++ b/src/player_face.h @@ -64,7 +64,7 @@ static const PlayerFaceBitsInfo _pf_info[] = { /* PFV_CHIN */ { 7, 2, { 4, 1, 2, 2 }, { 0x327, 0x327, 0x391, 0x3B1 } }, /* PFV_EYEBROWS */ { 9, 4, { 12, 16, 11, 16 }, { 0x32B, 0x337, 0x39A, 0x3B8 } }, /* PFV_MOUSTACHE */ { 13, 2, { 3, 0, 3, 0 }, { 0x367, 0, 0x397, 0 } }, ///< Depends on PFV_HAS_MOUSTACHE - /* PFV_LIPS */ { 13, 4, { 13, 10, 9, 9 }, { 0x35B, 0x351, 0x3A5, 0x3C8 } }, ///< Depends on !PFV_HAS_MOUSTACHE + /* PFV_LIPS */ { 13, 4, { 12, 10, 9, 9 }, { 0x35B, 0x351, 0x3A5, 0x3C8 } }, ///< Depends on !PFV_HAS_MOUSTACHE /* PFV_NOSE */ { 17, 3, { 8, 4, 4, 5 }, { 0x349, 0x34C, 0x393, 0x3B3 } }, ///< Depends on !PFV_HAS_MOUSTACHE /* PFV_HAIR */ { 20, 4, { 9, 5, 5, 4 }, { 0x382, 0x38B, 0x3D4, 0x3D9 } }, /* PFV_JACKET */ { 24, 2, { 3, 3, 3, 3 }, { 0x36B, 0x378, 0x36B, 0x378 } }, |