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:
parent
efbffe16b4
commit
63ac60d201
1 changed files with 9 additions and 3 deletions
12
cue2pops.c
12
cue2pops.c
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue