From 63abe0de7853272356bdb01e39a95a2d6fbedb28 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Fri, 17 Mar 2017 16:04:53 +0100 Subject: [PATCH] Restrict DualUse Layer keys to 8 max, too Again, for program space saving reasons, restrict DualUse layer keys to 8 max. Signed-off-by: Gergely Nagy --- src/Kaleidoscope-Ranges.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kaleidoscope-Ranges.h b/src/Kaleidoscope-Ranges.h index 73450618..00242499 100644 --- a/src/Kaleidoscope-Ranges.h +++ b/src/Kaleidoscope-Ranges.h @@ -32,7 +32,7 @@ namespace KaleidoscopePlugins { DUM_FIRST = DU_FIRST, DUM_LAST = DUM_FIRST + (8 << 8), DUL_FIRST, - DUL_LAST = DUL_FIRST + (24 << 8), + DUL_LAST = DUL_FIRST + (8 << 8), DU_LAST = DUL_LAST, TD_FIRST, TD_LAST = TD_FIRST + 15,