DCurrent / openbor

OpenBOR is the ultimate 2D side scrolling engine for beat em' ups, shooters, and more!
http://www.chronocrash.com
BSD 3-Clause "New" or "Revised" License
894 stars 119 forks source link

Only structures written to disk require packing. #306

Closed SumolX closed 3 months ago

SumolX commented 3 months ago

Pack as a whole should not be applied to all structures as they will cause cpu performance impacts due to non-native alignment. Instead only structures that are saved to disk or read from disk should have packing applied in order to guarantee the size of the structure being written is consistent across platforms.

This will break current saved configurations though... but moving forward they should all be consistently packed across all targets and saves can be shared across different platforms as long as endianness matches and CPU bits.