diff options
Diffstat (limited to 'keyboards/fc660c/fc660c.c')
-rw-r--r-- | keyboards/fc660c/fc660c.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/fc660c/fc660c.c b/keyboards/fc660c/fc660c.c index f2a5617672..da6ba9e744 100644 --- a/keyboards/fc660c/fc660c.c +++ b/keyboards/fc660c/fc660c.c @@ -16,10 +16,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "fc660c.h" +#ifdef ACTUATION_DEPTH_ADJUSTMENT +#include "actuation_point.h" +#endif + void matrix_init_kb(void) { // put your keyboard start-up code here // runs once when the firmware starts up +#ifdef ACTUATION_DEPTH_ADJUSTMENT + adjust_actuation_point(ACTUATION_DEPTH_ADJUSTMENT); +#endif + matrix_init_user(); } |