summaryrefslogtreecommitdiffstats
path: root/quantum/rgb_matrix.c
diff options
context:
space:
mode:
authorDavid Dai <newtonapple@gmail.com>2018-12-31 17:42:58 +0100
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-12-31 17:42:58 +0100
commitb7688590b8a252f7497e3f78d569b98ae62ab177 (patch)
tree5b6eca2321798a1116ab251da0d1029d01eb07b2 /quantum/rgb_matrix.c
parent0c0e208a36300660f3d568d52ae3155becf92893 (diff)
downloadqmk_firmware-b7688590b8a252f7497e3f78d569b98ae62ab177.tar.gz
qmk_firmware-b7688590b8a252f7497e3f78d569b98ae62ab177.tar.xz
Change rgblight_get_mode & rgb_matrix_get_mode's return type to uint8_t. (#4747)
* Change rgblight_get_mode's return type to uint8_t. Since rgblight_get_mode() is just returning rgblight_config_t.mode, it should match rgblight_config_t.mode's type: uint8_t. * Update rgb_matrix_get_mode to return uint8_t.
Diffstat (limited to 'quantum/rgb_matrix.c')
-rw-r--r--quantum/rgb_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c
index 82d36177b..2ed36304d 100644
--- a/quantum/rgb_matrix.c
+++ b/quantum/rgb_matrix.c
@@ -973,7 +973,7 @@ void rgb_matrix_mode_noeeprom(uint8_t mode) {
rgb_matrix_config.mode = mode;
}
-uint32_t rgb_matrix_get_mode(void) {
+uint8_t rgb_matrix_get_mode(void) {
return rgb_matrix_config.mode;
}