Commit Diff
- Commit:
91db220264b6d9be6d44223dd76ae8eb9bea3641
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
- Message:
- tog: mark HSPLIT_SCALE as float; unbreak regress on i386 On i386 view_split_begin_y() computed a value slightly different than on other arches, breaking the regress. Casting HSPLIT_SCALE as float unbreaks it. Diff from jamsek, committing on his behalf. Thanks!
- Actions:
- Patch | Tree
--- tog/tog.c +++ tog/tog.c @@ -125,7 +125,7 @@ enum tog_view_mode { TOG_VIEW_SPLIT_HRZN }; -#define HSPLIT_SCALE 0.3 /* default horizontal split scale */ +#define HSPLIT_SCALE 0.3f /* default horizontal split scale */ #define TOG_EOF_STRING "(END)"