Przeglądaj źródła

Apply ufbt format

Esteban Fuentealba 1 rok temu
rodzic
commit
3ee535d195
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      helpers/bmp.h

+ 1 - 1
helpers/bmp.h

@@ -3,7 +3,7 @@
 #ifndef BMP_H
 #ifndef BMP_H
 #define 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_init(void* buf, long width, long height);
 void bmp_set(void* buf, long x, long y, unsigned long color);
 void bmp_set(void* buf, long x, long y, unsigned long color);