From 9ab0c3e066b2c0b48daed461e80c7bb22bc6803f Mon Sep 17 00:00:00 2001 From: manuel Date: Thu, 14 Apr 2011 23:29:50 +0200 Subject: fix wrong left shift which fixes the invisible fourth player :) --- pacman-c++/constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pacman-c++/constants.h') 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 const field_t direction_up = (1 << 11); const field_t direction_down = (1 << 12); - const mask_t color_mask = Color::none | Color::red | Color::blue | Color::green; + const mask_t color_mask = Color::none | Color::red | Color::blue | Color::green | Color::yellow; const mask_t type_mask = block | bonuspoint; const mask_t direction_mask = direction_none | direction_left | direction_right | direction_up | direction_down; -- cgit v1.2.3