From eecb5350dd8e463532c68b28c779ef3db1f394b5 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Sat, 27 Mar 2021 04:09:07 -0500 Subject: [PATCH] Update DirectSound.h Fix comments --- Source/Project64-audio/Driver/DirectSound.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Project64-audio/Driver/DirectSound.h b/Source/Project64-audio/Driver/DirectSound.h index d119e7d1c..d104f4f83 100644 --- a/Source/Project64-audio/Driver/DirectSound.h +++ b/Source/Project64-audio/Driver/DirectSound.h @@ -9,8 +9,8 @@ class DirectSoundDriver : public: DirectSoundDriver(); bool Initialize(); - void StopAudio(); // Stops the Audio PlayBack (as if paused) - void StartAudio(); // Starts the Audio PlayBack (as if unpaused) + void StopAudio(); // Stops the audio playback (as if paused) + void StartAudio(); // Starts the audio playback (as if unpaused) void SetFrequency(uint32_t Frequency, uint32_t BufferSize); void SetVolume(uint32_t Volume);