Commit Diff
- Commit:
87a675e0d63fd0aa7e3a413cf19bc4ad53409d94
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- 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 @@ -129,7 +129,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)"