Remove unnecessary math with custom characters

This commit is contained in:
AngelJumbo 2022-10-21 11:51:54 -05:00
parent 552578345e
commit f74b376cad
1 changed files with 1 additions and 1 deletions

View File

@ -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;