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