Burnout Wiki:Contributor guide: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 6:
 
* Numeric data type names should be represented as fixed-width types where appropriate. For example, prefer <code>int64_t</code> over <code>long</code>. Where a <code>long</code> could be 64-bit on one machine, it could be 32-bit on another. Fixed-width types are guaranteed to be of the size in their name.
 
* Hexadecimal values should always be quoted in '''big-endian''' byte-order, regardless of their original endianness.
 
== Game Names ==