From 077af21f376db00f873c360919513fb117b3d9cf Mon Sep 17 00:00:00 2001 From: cosiek Date: Sat, 24 Nov 2018 01:39:32 +0100 Subject: [PATCH] allow for closing sound files --- include/SFML/Audio/InputSoundFile.hpp | 4 ++-- include/SFML/Audio/OutputSoundFile.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/SFML/Audio/InputSoundFile.hpp b/include/SFML/Audio/InputSoundFile.hpp index 317b95261..2c9f897af 100644 --- a/include/SFML/Audio/InputSoundFile.hpp +++ b/include/SFML/Audio/InputSoundFile.hpp @@ -195,14 +195,14 @@ public: //////////////////////////////////////////////////////////// Uint64 read(Int16* samples, Uint64 maxCount); -private: - //////////////////////////////////////////////////////////// /// \brief Close the current file /// //////////////////////////////////////////////////////////// void close(); +private: + //////////////////////////////////////////////////////////// // Member data //////////////////////////////////////////////////////////// diff --git a/include/SFML/Audio/OutputSoundFile.hpp b/include/SFML/Audio/OutputSoundFile.hpp index 5da374b0d..efa7c4b70 100644 --- a/include/SFML/Audio/OutputSoundFile.hpp +++ b/include/SFML/Audio/OutputSoundFile.hpp @@ -82,14 +82,14 @@ public: //////////////////////////////////////////////////////////// void write(const Int16* samples, Uint64 count); -private: - //////////////////////////////////////////////////////////// /// \brief Close the current file /// //////////////////////////////////////////////////////////// void close(); +private: + //////////////////////////////////////////////////////////// // Member data ////////////////////////////////////////////////////////////