slackbuilds_ponce/games/hedgewars/fpc-3.2.0.patch
B. Watson a69b0c8792
games/hedgewars: Fix build on -current.
Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2021-10-13 00:51:59 +07:00

20 lines
587 B
Diff

Description: Fix/Workaround build failure with newer fpc 3.2.0
Origin: http://hg.hedgewars.org/hedgewars/rev/6832dab555ae
Bug-Debian: https://bugs.debian.org/968125
Last-Update: 2020-08-10
--- a/hedgewars/uWorld.pas Sun Aug 09 14:43:02 2020 +0200
+++ b/hedgewars/uWorld.pas Mon Aug 10 12:56:53 2020 +0300
@@ -1129,8 +1129,8 @@
procedure ShiftWorld(Dir: LongInt); inline;
begin
preShiftWorldDx:= WorldDx;
- WorldDx:= WorldDx + LongInt(Dir * LongInt(playWidth));
-
+ Dir := Dir * LongInt(playWidth);
+ WorldDx:= WorldDx + Dir;
end;
procedure UnshiftWorld(); inline;