[futurebasic] Re: [FB] Build error

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : September 2001 : Group Archive : Group : All Groups

From: Derek Smith <dereksmi@...>
Date: Sun, 09 Sep 2001 03:44:10 -1000 (HST)
On Sun, 9 Sep 2001, Bernie Wylde wrote:

> Any ideas why I occasionally get an error message, something like the
> following, when building an app?
>
> Warning: Variable address rounded up to even address
> in file frust.¼:FRUST.GLBL at line 175 in AE.GLBL
> €€dim gPlayerCount%
>
>
> The built app seems to run ok though.

Its just a warning, not an error.  Misaligned variables will hinder
program performance.

Just put a DIM && on a line alone before the variable in question to force
even addresses for the next variables.

-D