diff options
| author | Simon <simon@hardwired.org.uk> | 2011-04-08 10:09:42 (GMT) |
|---|---|---|
| committer | Simon <simon@hardwired.org.uk> | 2011-04-08 10:09:42 (GMT) |
| commit | 767d73c5fc51647dcb5da4ed8349da2186c5060c (patch) | |
| tree | e9cb3540858927af4887553068fd348a95195092 /includes | |
| parent | 1bdf72be1a306ac07641211adb2ec1539e3d0a48 (diff) | |
| download | powder-767d73c5fc51647dcb5da4ed8349da2186c5060c.zip powder-767d73c5fc51647dcb5da4ed8349da2186c5060c.tar.gz | |
astyle
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 |
