X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=9970c9ea32cc185b760bf9fd8d4a293e78326f1d;hb=342de2ef2eff4f6936541b70d1eabf01f315fa47;hp=558f180c526865d33504600f409218996c9de100;hpb=bcf0b6f2f2fbcb33be313cbfffeabe64b1aa58d0;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index 558f180c..9970c9ea 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -20,7 +20,7 @@ #include #include -typedef unsigned char boolean; +typedef int boolean; #if !defined(PLATFORM_WIN32) typedef unsigned char byte; @@ -44,7 +44,7 @@ typedef unsigned char byte; #endif #ifndef SIGN -#define SIGN(a) ((a) < 0 ? -1 : ((a)>0 ? 1 : 0)) +#define SIGN(a) ((a) < 0 ? -1 : ((a) > 0 ? 1 : 0)) #endif #define SIZEOF_ARRAY(array, type) (sizeof(array) / sizeof(type))