OpenRCT2/src
Hielke Morsink bf4f68fe33 Use enum type that guarantee to support its values
By default enumerators use type `int` which can store values up to `1 << 31 - 1`. The clang compiler generates this error for enums values that use the sign bit: `enumerator value is not representable in the underlying type 'int'.`

To get rid of those warnings (and technically improve the code) the erroneous enums are now of type of `uint32`.

Note: I've skipped peep.h to prevent conflicts with the peep refactor branch.
2018-04-24 16:51:42 +02:00
..
openrct2 Use enum type that guarantee to support its values 2018-04-24 16:51:42 +02:00
openrct2-android Update android build to download objects 2018-04-06 10:45:08 +01:00
openrct2-cli Add threading library to CLI 2018-03-22 20:16:58 +00:00
openrct2-dll Fix arguments to main() 2017-10-17 00:04:40 +02:00
openrct2-ui Delete unused function arguments or mark them so (#7426) 2018-04-20 13:56:37 +02:00
openrct2-win Delete unused function arguments or mark them so (#7426) 2018-04-20 13:56:37 +02:00