diff options
author | athrxx | 2011-11-01 12:01:20 +0100 |
---|---|---|
committer | athrxx | 2011-11-01 20:29:55 +0100 |
commit | ced0fcf05420c140c1ec9bd99b09002aa52c76b9 (patch) | |
tree | 33163e17e065a978ce6207a271750bd1dfb293be /audio/softsynth | |
parent | 731382ad516a5d5fd7891c9f88146561ff5860da (diff) | |
download | scummvm-rg350-ced0fcf05420c140c1ec9bd99b09002aa52c76b9.tar.gz scummvm-rg350-ced0fcf05420c140c1ec9bd99b09002aa52c76b9.tar.bz2 scummvm-rg350-ced0fcf05420c140c1ec9bd99b09002aa52c76b9.zip |
FM-TOWNS AUDIO: make constructor of TownsAudioInterfaceInternal private
Diffstat (limited to 'audio/softsynth')
-rw-r--r-- | audio/softsynth/fmtowns_pc98/towns_audio.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/softsynth/fmtowns_pc98/towns_audio.cpp b/audio/softsynth/fmtowns_pc98/towns_audio.cpp index 28591117f0..d8300112bf 100644 --- a/audio/softsynth/fmtowns_pc98/towns_audio.cpp +++ b/audio/softsynth/fmtowns_pc98/towns_audio.cpp @@ -133,8 +133,9 @@ private: }; class TownsAudioInterfaceInternal : public TownsPC98_FmSynth { -public: +private: TownsAudioInterfaceInternal(Audio::Mixer *mixer, TownsAudioInterface *owner, TownsAudioInterfacePluginDriver *driver, bool externalMutexHandling = false); +public: ~TownsAudioInterfaceInternal(); static TownsAudioInterfaceInternal *addNewRef(Audio::Mixer *mixer, TownsAudioInterface *owner, TownsAudioInterfacePluginDriver *driver, bool externalMutexHandling = false); |