diff options
author | Joel Challis <git@zvecr.com> | 2023-01-11 22:31:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 22:31:54 +0000 |
commit | b61654fb956947939eb6922735130eb2f65b5f53 (patch) | |
tree | 3de5447d852a1e8cd3fbe2301d70150b79098b25 /users/brandonschlack | |
parent | 6576127b4c75c540d218527536d3a0d9b1eb5e9a (diff) |
Tidy up use of CTPC (#19570)
Diffstat (limited to 'users/brandonschlack')
-rw-r--r-- | users/brandonschlack/process_records.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/brandonschlack/process_records.c b/users/brandonschlack/process_records.c index 892bc7e062..f40eeaf8b6 100644 --- a/users/brandonschlack/process_records.c +++ b/users/brandonschlack/process_records.c @@ -141,14 +141,14 @@ void matrix_scan_cmd_tab(void) { * * Sends 'qmk compile -kb keyboard -km keymap' command to compile firmware * Uses 'qmk flash' and resets keyboard, if flash_bootloader set to true - * Sends CTPC and/or FORCE_LAYOUT parameters if built with those options + * Sends CONVERT_TO and/or FORCE_LAYOUT parameters if built with those options */ void send_make_command(bool flash_bootloader) { #ifdef FORCE_LAYOUT // Add layout string if built with FORCE_LAYOUT SEND_STRING("FORCE_LAYOUT=" FORCE_LAYOUT " "); #endif -#ifdef CONVERT_TO_PROTON_C // Add CTPC if built with CONVERT_TO_PROTON_C - SEND_STRING("CTPC=yes "); +#ifdef CONVERT_TO_PROTON_C // Add CONVERT_TO if built with converter + SEND_STRING("CONVERT_TO=proton_c "); #endif SEND_STRING("qmk "); if (flash_bootloader) { |