aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/report.h
diff options
context:
space:
mode:
authorKonstantin Đorđević <vomindoraan@gmail.com>2019-01-05 17:31:24 +0100
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-01-05 08:31:24 -0800
commitbe666b2d8a7b30f29a4d29b9d65af012816a43d7 (patch)
tree68e40eb948fe09ea4d1f9621821ef7bd9e7846c2 /tmk_core/common/report.h
parentd6cc90d0277cf084ab16215190ad64d24164f1bc (diff)
downloadqmk_firmware-be666b2d8a7b30f29a4d29b9d65af012816a43d7.tar.gz
qmk_firmware-be666b2d8a7b30f29a4d29b9d65af012816a43d7.zip
Add underscores to names of brightness control constants in report.h (#4764)
Diffstat (limited to 'tmk_core/common/report.h')
-rw-r--r--tmk_core/common/report.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/common/report.h b/tmk_core/common/report.h
index eb9afb727..e7c31bd37 100644
--- a/tmk_core/common/report.h
+++ b/tmk_core/common/report.h
@@ -48,8 +48,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
48#define TRANSPORT_STOP 0x00B7 48#define TRANSPORT_STOP 0x00B7
49#define TRANSPORT_STOP_EJECT 0x00CC 49#define TRANSPORT_STOP_EJECT 0x00CC
50#define TRANSPORT_PLAY_PAUSE 0x00CD 50#define TRANSPORT_PLAY_PAUSE 0x00CD
51#define BRIGHTNESSUP 0x006F 51#define BRIGHTNESS_UP 0x006F
52#define BRIGHTNESSDOWN 0x0070 52#define BRIGHTNESS_DOWN 0x0070
53/* application launch */ 53/* application launch */
54#define AL_CC_CONFIG 0x0183 54#define AL_CC_CONFIG 0x0183
55#define AL_EMAIL 0x018A 55#define AL_EMAIL 0x018A
@@ -192,8 +192,8 @@ typedef struct {
192 (key == KC_WWW_FORWARD ? AC_FORWARD : \ 192 (key == KC_WWW_FORWARD ? AC_FORWARD : \
193 (key == KC_WWW_STOP ? AC_STOP : \ 193 (key == KC_WWW_STOP ? AC_STOP : \
194 (key == KC_WWW_REFRESH ? AC_REFRESH : \ 194 (key == KC_WWW_REFRESH ? AC_REFRESH : \
195 (key == KC_BRIGHTNESS_UP ? BRIGHTNESSUP : \ 195 (key == KC_BRIGHTNESS_UP ? BRIGHTNESS_UP : \
196 (key == KC_BRIGHTNESS_DOWN ? BRIGHTNESSDOWN : \ 196 (key == KC_BRIGHTNESS_DOWN ? BRIGHTNESS_DOWN : \
197 (key == KC_WWW_FAVORITES ? AC_BOOKMARKS : 0))))))))))))))))))))))) 197 (key == KC_WWW_FAVORITES ? AC_BOOKMARKS : 0)))))))))))))))))))))))
198 198
199uint8_t has_anykey(report_keyboard_t* keyboard_report); 199uint8_t has_anykey(report_keyboard_t* keyboard_report);