Use two spaces before inline comments

This commit is contained in:
Konstantin Đorđević 2019-02-16 15:26:14 +01:00
parent 5a41c06cd7
commit bd43df53bd
3 changed files with 9 additions and 9 deletions

View File

@ -3,15 +3,15 @@
#include "quantum.h" #include "quantum.h"
typedef struct { typedef struct {
uint16_t h; uint16_t h; // 0360
uint8_t s; uint8_t s; // 0255
uint8_t v; uint8_t v; // 0255
} hsv_t; } hsv_t;
typedef struct { typedef struct {
uint8_t r; uint8_t r; // 0255
uint8_t g; uint8_t g; // 0255
uint8_t b; uint8_t b; // 0255
} rgb_t; } rgb_t;
extern const hsv_t GODSPEED_BLUE; extern const hsv_t GODSPEED_BLUE;