Page 1 of 1

Structures 64-bit vs 32-bit

Posted: Sun Dec 22, 2013 1:00 am
by spacebuddy
Hi All,

I have a structure.

Structure Prefs
Header.s{30}
FileName.s{60}
ProgramName.s{100}
Resize.i
FullScreen.i
EndStructure

How can I make this structure compatible with x86 and x64? When I save the structure to disk they are not the same size, the x64 is larger.
Thanks :D

Re: Structures 64-bit vs 32-bit

Posted: Sun Dec 22, 2013 1:22 am
by ts-soft

Code: Select all

Structure Prefs
  Header.s{30}
  FileName.s{60}
  ProgramName.s{100}
  Resize.l
  FullScreen.l
EndStructure

Re: Structures 64-bit vs 32-bit

Posted: Sun Dec 22, 2013 6:16 pm
by spacebuddy
ts-soft wrote:

Code: Select all

Structure Prefs
  Header.s{30}
  FileName.s{60}
  ProgramName.s{100}
  Resize.l
  FullScreen.l
EndStructure
Thank you, that worked :D