diff options
Diffstat (limited to 'pacman-c++/util.cpp')
| -rw-r--r-- | pacman-c++/util.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pacman-c++/util.cpp b/pacman-c++/util.cpp index d83ea3c..f8396f9 100644 --- a/pacman-c++/util.cpp +++ b/pacman-c++/util.cpp | |||
| @@ -145,7 +145,14 @@ namespace Util | |||
| 145 | { | 145 | { |
| 146 | Transmission::field_t &cur = map[x][y]; | 146 | Transmission::field_t &cur = map[x][y]; |
| 147 | if (cur == Transmission::none) | 147 | if (cur == Transmission::none) |
| 148 | { | ||
| 149 | #if 0 | ||
| 150 | /* use for endround testing */ | ||
| 151 | if (x > 0) | ||
| 152 | continue; | ||
| 153 | #endif | ||
| 148 | cur = type; | 154 | cur = type; |
| 155 | } | ||
| 149 | else if (cur == Transmission::point) | 156 | else if (cur == Transmission::point) |
| 150 | cur = Transmission::none; | 157 | cur = Transmission::none; |
| 151 | } | 158 | } |
