implement be_synth behavior for BSynth. behavior taken from bebook specification and R5 testing.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5733 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2003-12-22 23:23:27 +00:00
parent 51fe1be4f7
commit f7f27fcb79

View File

@ -23,11 +23,14 @@
#include "debug.h"
#include "Synth.h"
BSynth *be_synth = 0;
//------------------------------------------------------------------------------
BSynth::BSynth()
{
UNIMPLEMENTED
be_synth = this;
}
//------------------------------------------------------------------------------
@ -35,6 +38,7 @@ BSynth::BSynth()
BSynth::BSynth(synth_mode synth)
{
UNIMPLEMENTED
be_synth = this;
}
//------------------------------------------------------------------------------
@ -42,6 +46,7 @@ BSynth::BSynth(synth_mode synth)
BSynth::~BSynth()
{
UNIMPLEMENTED
be_synth = 0;
}
//------------------------------------------------------------------------------