diff options
| author | manuel <manuel@mausz.at> | 2011-04-14 23:29:50 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2011-04-14 23:29:50 +0200 |
| commit | 9ab0c3e066b2c0b48daed461e80c7bb22bc6803f (patch) | |
| tree | 1998cdd12ad4926bd8e49d8f3c2d02cf9bc589de /pacman-c++/constants.h | |
| parent | 0ef2d7931ba97db3105e6099cfc277f28ee2f6c6 (diff) | |
| download | foop-9ab0c3e066b2c0b48daed461e80c7bb22bc6803f.tar.gz foop-9ab0c3e066b2c0b48daed461e80c7bb22bc6803f.tar.bz2 foop-9ab0c3e066b2c0b48daed461e80c7bb22bc6803f.zip | |
fix wrong left shift which fixes the invisible fourth player :)
Diffstat (limited to 'pacman-c++/constants.h')
| -rw-r--r-- | pacman-c++/constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pacman-c++/constants.h b/pacman-c++/constants.h index 7ce26ad..a14e623 100644 --- a/pacman-c++/constants.h +++ b/pacman-c++/constants.h | |||
| @@ -65,7 +65,7 @@ namespace Transmission | |||
| 65 | const field_t direction_up = (1 << 11); | 65 | const field_t direction_up = (1 << 11); |
| 66 | const field_t direction_down = (1 << 12); | 66 | const field_t direction_down = (1 << 12); |
| 67 | 67 | ||
| 68 | const mask_t color_mask = Color::none | Color::red | Color::blue | Color::green; | 68 | const mask_t color_mask = Color::none | Color::red | Color::blue | Color::green | Color::yellow; |
| 69 | const mask_t type_mask = block | bonuspoint; | 69 | const mask_t type_mask = block | bonuspoint; |
| 70 | const mask_t direction_mask = direction_none | direction_left | direction_right | direction_up | direction_down; | 70 | const mask_t direction_mask = direction_none | direction_left | direction_right | direction_up | direction_down; |
| 71 | 71 | ||
