From f738c4ea1eec657fd5621622a02eae35f9bd99d8 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sat, 12 Aug 2017 23:14:36 -0700 Subject: [PATCH] rename lookupUncached to lookupOnActiveLayer --- src/layers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layers.h b/src/layers.h index 0e503666..329c777b 100644 --- a/src/layers.h +++ b/src/layers.h @@ -35,12 +35,12 @@ class Layer_ { * * Thus, if we are curious about what a given key will do, use `lookup`. If we * are curious what the active layer state describes the key as, use - * `lookupUncached`. + * `lookupOnActiveLayer`. */ static Key lookup(byte row, byte col) { return liveCompositeKeymap[row][col]; } - static Key lookupUncached(byte row, byte col) { + static Key lookupOnActiveLayer(byte row, byte col) { uint8_t layer = activeLayers[row][col]; return (*getKey)(layer, row, col); }