Game Boy: fix serious typo
This commit is contained in:
parent
1721e1d03e
commit
45196daf95
2 changed files with 11 additions and 1 deletions
|
|
@ -534,7 +534,7 @@ void DivInstrument::putInsData(SafeWriter* w) {
|
|||
|
||||
// GB hardware sequence
|
||||
w->writeC(gb.hwSeqLen);
|
||||
for (int i=0; gb.hwSeqLen; i++) {
|
||||
for (int i=0; i<gb.hwSeqLen; i++) {
|
||||
w->writeC(gb.hwSeq[i].cmd);
|
||||
w->writeS(gb.hwSeq[i].data);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue