aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth/fmtowns_pc98/towns_audio.cpp
diff options
context:
space:
mode:
authorathrxx2011-11-01 12:01:20 +0100
committerathrxx2011-11-01 20:29:55 +0100
commitced0fcf05420c140c1ec9bd99b09002aa52c76b9 (patch)
tree33163e17e065a978ce6207a271750bd1dfb293be /audio/softsynth/fmtowns_pc98/towns_audio.cpp
parent731382ad516a5d5fd7891c9f88146561ff5860da (diff)
downloadscummvm-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/fmtowns_pc98/towns_audio.cpp')
-rw-r--r--audio/softsynth/fmtowns_pc98/towns_audio.cpp3
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);