summaryrefslogtreecommitdiff
path: root/users/drashna/keyrecords/unicode.c
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2022-01-30 13:23:13 -0800
committerDrashna Jael're <drashna@live.com>2022-01-30 13:23:13 -0800
commitb57f8a8b9fd50bdb39473e7730400e14b879da72 (patch)
tree430a140a24cf571b87423bdcd1fa5ad0a0461364 /users/drashna/keyrecords/unicode.c
parent1be1bebc043483c5a8fc77ed8b2705676a6cb05c (diff)
parent941b1d35b8e40a9c93301a1131ef3f3336fee0b5 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'users/drashna/keyrecords/unicode.c')
-rw-r--r--users/drashna/keyrecords/unicode.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/users/drashna/keyrecords/unicode.c b/users/drashna/keyrecords/unicode.c
index db2058e5d1..5acd51da9b 100644
--- a/users/drashna/keyrecords/unicode.c
+++ b/users/drashna/keyrecords/unicode.c
@@ -181,7 +181,6 @@ bool process_record_aussie(uint16_t keycode, keyrecord_t *record) {
bool process_record_zalgo(uint16_t keycode, keyrecord_t *record) {
if ((KC_A <= keycode) && (keycode <= KC_0)) {
if (record->event.pressed) {
-
tap_code16_nomods(keycode);
int number = (rand() % (8 + 1 - 2)) + 2;
@@ -285,13 +284,11 @@ bool process_record_unicode(uint16_t keycode, keyrecord_t *record) {
} else if (typing_mode == KC_ZALGO) {
return process_record_zalgo(keycode, record);
}
- return process_unicode_common(keycode, record);
+ return true;
}
/**
* @brief Initialize the default unicode mode on firmware startu
*
*/
-void matrix_init_unicode(void) {
- unicode_input_mode_init();
-}
+void matrix_init_unicode(void) { unicode_input_mode_init(); }