Add primary MultiPCM support
Partially revert previous commit Add notifyInsAddition in dispatch for instrument addition Refresh sample memory when instrument type changed Fix naming for consistency Also, this commit fixes a some possible issue in MultiPCM on openMSX core. Chip ID: Already determined
This commit is contained in:
parent
bd8d9a56a0
commit
957b57f3d9
19 changed files with 1085 additions and 55 deletions
|
|
@ -164,6 +164,10 @@ void DivDispatch::notifyWaveChange(int ins) {
|
|||
|
||||
}
|
||||
|
||||
void DivDispatch::notifyInsAddition(int sysID) {
|
||||
|
||||
}
|
||||
|
||||
void DivDispatch::notifyInsDeletion(void* ins) {
|
||||
logE("notifyInsDeletion NOT implemented!");
|
||||
abort();
|
||||
|
|
@ -217,7 +221,7 @@ bool DivDispatch::hasSamplePtrHeader(int index) {
|
|||
return false;
|
||||
}
|
||||
|
||||
bool DivDispatch::hasSampleInstHeader(int index) {
|
||||
bool DivDispatch::hasSampleInsHeader(int index) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue