mirror of https://github.com/bsnes-emu/bsnes.git
9 lines
115 B
C++
9 lines
115 B
C++
|
#ifdef DSP_CPP
|
||
|
|
||
|
void DSP::serialize(serializer &s) {
|
||
|
Processor::serialize(s);
|
||
|
s.array(samplebuffer);
|
||
|
}
|
||
|
|
||
|
#endif
|