summaryrefslogtreecommitdiff
path: root/themes/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'themes/types.h')
-rw-r--r--themes/types.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/themes/types.h b/themes/types.h
index 7bac7f3..d5c7938 100644
--- a/themes/types.h
+++ b/themes/types.h
@@ -2,15 +2,15 @@
#include <cstdint>
-typedef int8_t int8;
-typedef int16_t int16;
-typedef int32_t int32;
-typedef int64_t int64;
+typedef int8_t i8;
+typedef int16_t i16;
+typedef int32_t i32;
+typedef int64_t i64;
-typedef uint8_t uint8;
-typedef uint16_t uint16;
-typedef uint32_t uint32;
-typedef unsigned long uint64;
+typedef uint8_t u8;
+typedef uint16_t u16;
+typedef uint32_t u32;
+typedef unsigned long u64;
-typedef float float32;
-typedef double float64;
+typedef float f32;
+typedef double f64;