From c063db7301fb2adb2fd2629b0431f10fbe5656e9 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Fri, 17 Mar 2017 15:33:25 +0100 Subject: [PATCH] OneShot: Decrease the amount of one-shot layers Instead of having 24 one-shot layers, allow only 8. This allows us to fit into 16 bits, and will save a lot of program space. 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 9cc9b40d..b25847d5 100644 --- a/src/Kaleidoscope-Ranges.h +++ b/src/Kaleidoscope-Ranges.h @@ -26,7 +26,7 @@ namespace KaleidoscopePlugins { OSM_FIRST = OS_FIRST, OSM_LAST = OSM_FIRST + 7, OSL_FIRST, - OSL_LAST = OSL_FIRST + 23, + OSL_LAST = OSL_FIRST + 7, OS_LAST = OSL_LAST, DU_FIRST, DUM_FIRST = DU_FIRST,