Browse Source

Clean up some formatting

Scott Lahteine 7 years ago
parent
commit
945139e328
2 changed files with 6 additions and 6 deletions
  1. 1
    1
      Marlin/src/lcd/fontutils.h
  2. 5
    5
      Marlin/src/lcd/u8g_fontutf8.h

+ 1
- 1
Marlin/src/lcd/fontutils.h View File

@@ -29,7 +29,7 @@ uint8_t read_byte_rom(uint8_t * str);
29 29
 
30 30
 #ifndef NUM_ARRAY
31 31
   #define NUM_ARRAY(a) (sizeof(a)/sizeof((a)[0]))
32
-#endif // NUM_ARRAY
32
+#endif
33 33
 
34 34
 typedef uint16_t pixel_len_t;
35 35
 #define PIXEL_LEN_NOLIMIT ((pixel_len_t)(-1))

+ 5
- 5
Marlin/src/lcd/u8g_fontutf8.h View File

@@ -18,11 +18,11 @@
18 18
 #define _UxGT(a) a
19 19
 
20 20
 typedef struct _uxg_fontinfo_t {
21
-    uint16_t page;
22
-    uint8_t begin;
23
-    uint8_t end;
24
-    uint16_t size;
25
-    const u8g_fntpgm_uint8_t *fntdata;
21
+  uint16_t page;
22
+  uint8_t begin;
23
+  uint8_t end;
24
+  uint16_t size;
25
+  const u8g_fntpgm_uint8_t *fntdata;
26 26
 } uxg_fontinfo_t;
27 27
 
28 28
 int uxg_SetUtf8Fonts (const uxg_fontinfo_t * fntinfo, int number); // fntinfo is type of PROGMEM

Loading…
Cancel
Save