Un fork de lavat pour pouvoir y ajouter des titres - retour accueil
git clone git://bebou.netlib.re/lavat
Log | Files | Refs | README | LICENSE |
commit f74b376cad0f208be9aad37981c04b38793d7d6f parent 552578345e59475db3387fc0061fd11bfca864cf Auteurice: AngelJumbo <anarjumb@gmail.com> Date: Fri, 21 Oct 2022 11:51:54 -0500 Remove unnecessary math with custom characters Diffstat:
M | lavat.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lavat.c b/lavat.c @@ -90,7 +90,7 @@ int main(int argc, char *argv[]) { // calculate the two halfs of the block at the same time float sum[2] = {0}; - for (int j2 = 0; j2 < 2; j2++) { + for (int j2 = 0; j2 < (!custom ? 2 : 1); j2++) { for (int k = 0; k < nballs; k++) { int y = j * 2 + j2;