more fixes and tweaks
memory management party
This commit is contained in:
parent
fbc29e1106
commit
3a1019a08c
11 changed files with 55 additions and 14 deletions
|
|
@ -632,6 +632,11 @@ void DivEngine::renderSamples() {
|
|||
}
|
||||
}
|
||||
|
||||
DivInstrument* DivEngine::getIns(int index) {
|
||||
if (index<0 || index>=song.insLen) return &song.nullIns;
|
||||
return song.ins[index];
|
||||
}
|
||||
|
||||
void DivEngine::play() {
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue