fix build...

This commit is contained in:
tildearrow 2024-03-01 21:49:21 -05:00
parent 24c0318390
commit 1445371ad8
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View file

@ -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;