diff options
| author | Ilya Zhuravlev <whatever@xyz.is> | 2022-03-27 22:42:36 -0600 |
|---|---|---|
| committer | Ilya Zhuravlev <whatever@xyz.is> | 2022-03-27 22:42:36 -0600 |
| commit | 67e10a43cb044472ec0bf997a5fcf09193ddcc1d (patch) | |
| tree | 1d61546dc1d5efccd2dd6d6471a3e024452d9a37 /quantum/vial.h | |
| parent | 2ba865ecbe47dbda4be5613a430147d856b42bef (diff) | |
vial: fix typo for VIAL_KEY_OVERRIDE_ENTRIES auto sizing
Diffstat (limited to 'quantum/vial.h')
| -rw-r--r-- | quantum/vial.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/vial.h b/quantum/vial.h index 46db3706c7..897dc94563 100644 --- a/quantum/vial.h +++ b/quantum/vial.h @@ -146,11 +146,11 @@ _Static_assert(sizeof(vial_combo_entry_t) == 10, "Unexpected size of the vial_co #include "process_key_override.h" #ifndef VIAL_KEY_OVERRIDE_ENTRIES - #if DYNAMIC_KEYMAP_EEPROM_MAX_ADDR > 4000 + #if TOTAL_EEPROM_BYTE_COUNT > 4000 #define VIAL_KEY_OVERRIDE_ENTRIES 32 - #elif DYNAMIC_KEYMAP_EEPROM_MAX_ADDR > 2000 + #elif TOTAL_EEPROM_BYTE_COUNT > 2000 #define VIAL_KEY_OVERRIDE_ENTRIES 16 - #elif DYNAMIC_KEYMAP_EEPROM_MAX_ADDR > 1000 + #elif TOTAL_EEPROM_BYTE_COUNT > 1000 #define VIAL_KEY_OVERRIDE_ENTRIES 8 #else #define VIAL_KEY_OVERRIDE_ENTRIES 4 |
