Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Oct 2019 10:05:15 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r515096 - head/games/colobot/files
Message-ID:  <201910211005.x9LA5Fax080681@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon Oct 21 10:05:15 2019
New Revision: 515096
URL: https://svnweb.freebsd.org/changeset/ports/515096

Log:
  games/colobot: fix build on ARM and PPC
  
  PR:		241325
  Approved by:	fernape (maintainer), linimon (mentor)

Added:
  head/games/colobot/files/
  head/games/colobot/files/patch-src_object_task_taskgoto.h   (contents, props changed)

Added: head/games/colobot/files/patch-src_object_task_taskgoto.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/colobot/files/patch-src_object_task_taskgoto.h	Mon Oct 21 10:05:15 2019	(r515096)
@@ -0,0 +1,11 @@
+--- src/object/task/taskgoto.h.orig	2019-10-18 08:14:46 UTC
++++ src/object/task/taskgoto.h
+@@ -147,7 +147,7 @@ class CTaskGoto : public CForegroundTask (protected)
+     int             m_bmTotal = 0;      // number of points in m_bmPoints
+     int             m_bmIndex = 0;      // index in m_bmPoints
+     Math::Vector        m_bmPoints[MAXPOINTS+2];
+-    char            m_bmIter[MAXPOINTS+2] = {};
++    signed char     m_bmIter[MAXPOINTS+2] = {};
+     int             m_bmIterCounter = 0;
+     CObject*        m_bmCargoObject = nullptr;
+     float           m_bmFinalMove = 0.0f;  // final advance distance



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910211005.x9LA5Fax080681>