diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/common.h b/src/core/common.h index 18f4715c..ff8580a1 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -58,6 +58,9 @@ #define Max(a,b) ((a) > (b) ? (a) : (b)) #define Min(a,b) ((a) < (b) ? (a) : (b)) +// Use this to add const that wasn't there in the original code +#define Const const + typedef uint8_t uint8; typedef int8_t int8; typedef uint16_t uint16; |