[comp.sources.games.bugs] xconq5 on hp9000s800

tml@santra.HUT.FI (Tor Lillqvist) (07/08/88)

I have compiled and run xconq5, recently posted to comp.sources.games,
on our HP9000/840.  Only one small fix was necessary: In the file
period.c, the use of the macros OFFSET and VOFFSET in function call
arguments must be changed to assignments to a dummy variable like
this:

Change all the
	ff(..., OFFSET(xx, yy))
to
	ff(..., i = OFFSET(xx, yy))

Unless this change is made, per2c won't work.