Skip to content

Commit

Permalink
Fix enum
Browse files Browse the repository at this point in the history
  • Loading branch information
cad0gan committed Apr 2, 2024
1 parent 490216a commit dec5677
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swilib/include/swilib/misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ typedef struct LIGHT_PARAM LIGHT_PARAM;
* Illumination device.
* */
enum IlluminationDeviceID {
ILLUMINATION_DEV_KEYBOARD = 0, /**< Keyboard */
ILLUMINATION_DEV_DISPLAY = 1, /**< LCD */
ILLUMINATION_DEV_DISPLAY = 0, /**< LCD */
ILLUMINATION_DEV_KEYBOARD = 1, /**< Keyboard */
};

/**
Expand Down

0 comments on commit dec5677

Please sign in to comment.