1
0
Fork 0
mirror of https://github.com/ErikAndren/cue2pops-mac.git synced 2025-04-19 15:38:04 +02:00

Add extra braces

This commit is contained in:
Erik Andrén Zachrisson 2015-11-01 13:50:05 +01:00
parent efbffe16b4
commit 63ac60d201

View file

@ -1104,7 +1104,9 @@ int main(int argc, char **argv)
if(vmode == 1 && i <= daTrack_ptr) NTSCpatcher(outbuf, i);
if(i + HEADERSIZE >= bin_size) {
fwrite(outbuf, HEADERSIZE - (i + HEADERSIZE - bin_size), 1, vcd_file);
} else fwrite(outbuf, HEADERSIZE, 1, vcd_file);
} else {
fwrite(outbuf, HEADERSIZE, 1, vcd_file);
}
}
}
if(GameTitle >= 0 && fix_game == 1 && GameFixed == 0) {
@ -1184,7 +1186,9 @@ int main(int argc, char **argv)
if(vmode == 1 && i <= daTrack_ptr) NTSCpatcher(outbuf, i);
if(i + HEADERSIZE >= bin_size) {
fwrite(outbuf, HEADERSIZE - (i + HEADERSIZE - bin_size), 1, vcd_file);
} else fwrite(outbuf, HEADERSIZE, 1, vcd_file);
} else {
fwrite(outbuf, HEADERSIZE, 1, vcd_file);
}
}
}
if(GameTitle >= 0 && fix_game == 1 && GameFixed == 0) {
@ -1264,7 +1268,9 @@ int main(int argc, char **argv)
if(vmode == 1 && i <= daTrack_ptr) NTSCpatcher(outbuf, i);
if(i + HEADERSIZE >= bin_size) {
fwrite(outbuf, HEADERSIZE - (i + HEADERSIZE - bin_size), 1, vcd_file);
} else fwrite(outbuf, HEADERSIZE, 1, vcd_file);
} else {
fwrite(outbuf, HEADERSIZE, 1, vcd_file);
}
}
}
if(GameTitle >= 0 && fix_game == 1 && GameFixed == 0) {