Browse Source

Apply ufbt format

Esteban Fuentealba 2 năm trước cách đây
mục cha
commit
3ee535d195
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      helpers/bmp.h

+ 1 - 1
helpers/bmp.h

@@ -3,7 +3,7 @@
 #ifndef BMP_H
 #define BMP_H
 
-#define BMP_SIZE(w, h) ((h) * ((w)*3 + (((w) * -3UL) & 3)) + 14 + 40)
+#define BMP_SIZE(w, h) ((h) * ((w) * 3 + (((w) * -3UL) & 3)) + 14 + 40)
 
 void bmp_init(void* buf, long width, long height);
 void bmp_set(void* buf, long x, long y, unsigned long color);