fix build...
This commit is contained in:
parent
24c0318390
commit
1445371ad8
|
|
@ -796,7 +796,7 @@ class DivDispatch {
|
||||||
* @param index the memory index.
|
* @param index the memory index.
|
||||||
* @return a pointer to DivMemoryComposition, or NULL.
|
* @return a pointer to DivMemoryComposition, or NULL.
|
||||||
*/
|
*/
|
||||||
virtual const DivMemoryComposition* getMemCompo();
|
virtual const DivMemoryComposition* getMemCompo(int index);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render samples into sample memory.
|
* Render samples into sample memory.
|
||||||
|
|
|
||||||
|
|
@ -199,6 +199,10 @@ size_t DivDispatch::getSampleMemUsage(int index) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const DivMemoryComposition* DivDispatch::getMemCompo(int index) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
bool DivDispatch::isSampleLoaded(int index, int sample) {
|
bool DivDispatch::isSampleLoaded(int index, int sample) {
|
||||||
printf("you are calling.\n");
|
printf("you are calling.\n");
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue