Make the bool_t typedef in the processing lib match the others

There is no specific reason to use int32_t for this type.
This commit is contained in:
Martin Storsjö 2014-01-23 18:58:26 +02:00
parent 09f0254d5e
commit a24fd5e120

View File

@ -75,7 +75,7 @@ typedef unsigned __int64 uint64_t ;
#endif
typedef char str_t ; // [comment]: specific use plain char only for character parameters
typedef int32_t bool_t ;
typedef bool bool_t ;
#if defined(_WIN32) || defined(_MACH_PLATFORM) || defined(__GNUC__)
typedef float float_t ;