Should I expect problems compiling BMX game on Mac

Archives Forums/MacOS X Discussion/Should I expect problems compiling BMX game on Mac

anawiki(Posted 2005) [#1]
Should I expect any problems compiling game developed in BlitzMax on Mac? My game works fine in DX and OpenGL. What should I be worring about (I don't own Mac, so I want to make porting as easy as possible).

thanks
Roman


Who was John Galt?(Posted 2005) [#2]
Things to consider-
Open GL only on Mac - you have this covered.
Data files - the BigEndian LittleEndian issue. If you use any byte reading/writing routines, make sure they used a fixed byte order to make the files cross-platform.
Make sure the media formats are supported on both platforms - I always use png for gfx. Mac and PC fonts use different formats.


ImaginaryHuman(Posted 2005) [#3]
Yah convert your streams to a specific type.

Otherwise everything should be okay. There is no DirectX on Mac so everything will be OpenGL.

Theoretically BlitzMax SHOULD compile to exactly the same functionality no all platforms without modifications.