You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Be carrefull: long on 64b cpu/compiler are not 32b
//typedef unsigned long u32;
typedef uint32_t u32;
//typedef signed long s32;
typedef int32_t s32;
The text was updated successfully, but these errors were encountered:
Fix:
in structs.h :
// Be carrefull: long on 64b cpu/compiler are not 32b
//typedef unsigned long u32;
typedef uint32_t u32;
//typedef signed long s32;
typedef int32_t s32;
The text was updated successfully, but these errors were encountered: