mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-11 14:40:06 +00:00
Fix Ortho Compile issue
This commit is contained in:
parent
34b274360c
commit
9dba705064
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
enum custom_keycodes {
|
||||
QWERTY = SAFE_RANGE,
|
||||
COLEMAK,
|
||||
DVORAK,
|
||||
ADJUST,
|
||||
DVORAK
|
||||
};
|
||||
|
||||
// Fillers to make layering more clear
|
||||
|
@ -112,5 +111,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
}
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue