Hello Markus,
On 26.01.2015 16:28, Markus Koschany wrote:
On 26.01.2015 02:46, Celelibi wrote:
It looks like in the boss levels the position of the bouncer cannot
reach the side walls allowing the balls to fall without any way to catch
them.
The minimum distance from the bouncer to the wall looks like the size of
the "corner relaunchers" in the normal levels.
This may be on purpose. But in doubt, I sumbit this bug. :)
Hi again,
beats me. Bruno, is this an intended feature or a bug?
This is a bug not a feature. :-)
This patch fixes Bug #776262.
Best Regards,
--
Bruno
--- controller_paddles.cc.original 2015-03-21 14:49:59.494501034 +0100
+++ controller_paddles.cc 2015-03-21 14:51:00.764083057 +0100
@@ -57,8 +57,15 @@
width_maxi = 32 * resolution;
width_mini = 32 * resolution;
bottom_y_coord = (232 - 8) * resolution;
- min_coordinate = 16 * resolution;
- max_coordinate = 300 * resolution;
+ min_coordinate = 16;
+ if (resolution == 1)
+ {
+ max_coordinate = 303;
+ }
+ else
+ {
+ max_coordinate = 622;
+ }
}
else
{