Convert LAYER_ID_* macros to LayerId_* enum values.

This commit is contained in:
László Monda
2017-11-02 21:48:30 +01:00
parent 00dfd96d55
commit 2aaef66d85
5 changed files with 26 additions and 20 deletions

View File

@@ -3,11 +3,15 @@
// Macros:
#define LAYER_ID_BASE 0
#define LAYER_ID_MOD 1
#define LAYER_ID_FN 2
#define LAYER_ID_MOUSE 3
#define LAYER_COUNT 4
// Typedefs:
typedef enum {
LayerId_Base,
LayerId_Mod,
LayerId_Fn,
LayerId_Mouse,
} layer_id_t;
#endif