diff --git a/stella/src/ui/sdl/SoundSDL.cxx b/stella/src/ui/sdl/SoundSDL.cxx index 0147597e9..4709e7398 100644 --- a/stella/src/ui/sdl/SoundSDL.cxx +++ b/stella/src/ui/sdl/SoundSDL.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: SoundSDL.cxx,v 1.3 2002-11-11 02:07:21 bwmott Exp $ +// $Id: SoundSDL.cxx,v 1.4 2002-11-11 22:07:35 stephena Exp $ //============================================================================ #include @@ -97,7 +97,7 @@ SoundSDL::SoundSDL(bool activate) // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SoundSDL::~SoundSDL() { - close(); + closeDevice(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -132,7 +132,7 @@ void SoundSDL::mute(bool state) } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundSDL::close() +void SoundSDL::closeDevice() { if(myIsInitializedFlag) { diff --git a/stella/src/ui/sdl/SoundSDL.hxx b/stella/src/ui/sdl/SoundSDL.hxx index f34350d75..a2e970803 100644 --- a/stella/src/ui/sdl/SoundSDL.hxx +++ b/stella/src/ui/sdl/SoundSDL.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: SoundSDL.hxx,v 1.3 2002-11-11 02:07:21 bwmott Exp $ +// $Id: SoundSDL.hxx,v 1.4 2002-11-11 22:07:35 stephena Exp $ //============================================================================ #ifndef SOUNDSDL_HXX @@ -28,7 +28,7 @@ This class implements the sound API for SDL. @author Stephen Anthony and Bradford W. Mott - @version $Id: SoundSDL.hxx,v 1.3 2002-11-11 02:07:21 bwmott Exp $ + @version $Id: SoundSDL.hxx,v 1.4 2002-11-11 22:07:35 stephena Exp $ */ class SoundSDL { @@ -47,7 +47,7 @@ class SoundSDL /** Closes the sound device */ - void close(); + void closeDevice(); /** Return the playback sample rate for the sound device.