mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-24 05:25:12 +00:00
MOD import: fix brainless 3
duration 0:00
This commit is contained in:
parent
32da1e94ed
commit
02760ddcbc
1 changed files with 3 additions and 1 deletions
|
@ -1489,12 +1489,14 @@ bool DivEngine::loadMod(unsigned char* file, size_t len) {
|
|||
effectState[4]=fxVal;
|
||||
break;
|
||||
case 11: // jump to pos
|
||||
case 13: // break to row
|
||||
writeFxCol(fxTyp,fxVal);
|
||||
break;
|
||||
case 12: // set vol
|
||||
data[row][3]=fxVal;
|
||||
break;
|
||||
case 13: // break to row (BCD)
|
||||
writeFxCol(fxTyp,((fxVal>>4)*10)+(fxVal&15));
|
||||
break;
|
||||
case 15: // set speed
|
||||
// TODO: somehow handle VBlank tunes
|
||||
// TODO: klisje is still broken, perhaps because there wasn't tempo set back then?
|
||||
|
|
Loading…
Reference in a new issue