commit 91db220264b6d9be6d44223dd76ae8eb9bea3641 from: Mark Jamsek via: Omar Polo date: Sat Apr 22 15:40:10 2023 UTC 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! commit - 3aa652eff930e9f4d878f8d4a7d01ffd3e95e096 commit + 91db220264b6d9be6d44223dd76ae8eb9bea3641 blob - c1264e0741802f1cb6105a4bc666bda6ea965ebb blob + 51d1e270d8a161220288c3ad69268b9b6e7d0beb --- 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)"