diff options
Diffstat (limited to 'includes')
| -rw-r--r-- | includes/misc.h | 8 | ||||
| -rw-r--r-- | includes/powder.h | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/includes/misc.h b/includes/misc.h index a372648..c3ba03e 100644 --- a/includes/misc.h +++ b/includes/misc.h @@ -79,11 +79,15 @@ int cpu_check(void); // a b // c d -struct matrix2d {float a,b,c,d;}; +struct matrix2d { + float a,b,c,d; +}; typedef struct matrix2d matrix2d; // column vector -struct vector2d {float x,y;}; +struct vector2d { + float x,y; +}; typedef struct vector2d vector2d; matrix2d m2d_multiply_m2d(matrix2d m1, matrix2d m2); diff --git a/includes/powder.h b/includes/powder.h index 892b052..7a3862b 100644 --- a/includes/powder.h +++ b/includes/powder.h @@ -686,7 +686,7 @@ static part_transition ptransitions[PT_NUM] = /* GOL */ {IPL, NT, IPH, NT, ITL, NT, ITH, NT}, /* GOL */ {IPL, NT, IPH, NT, ITL, NT, ITH, NT}, /* WIND */ {IPL, NT, IPH, NT, ITL, NT, ITH, NT}, - /* H2 */ {IPL, NT, IPH, NT, ITL, NT, ITH, NT}, + /* H2 */ {IPL, NT, IPH, NT, ITL, NT, ITH, NT}, }; #undef IPL #undef IPH |
