From 7747d8d8f8c4449e23111c633ce1c7ebb8556b4f Mon Sep 17 00:00:00 2001 From: gglas Date: Sat, 23 May 2026 08:51:23 -0500 Subject: [PATCH] Fix typo in Chapter 15 of Building 2D Games tutorial --- .../15_audio_controller/snippets/audiocontroller.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/tutorials/building_2d_games/15_audio_controller/snippets/audiocontroller.cs b/articles/tutorials/building_2d_games/15_audio_controller/snippets/audiocontroller.cs index ac4a664c..805cb5d5 100644 --- a/articles/tutorials/building_2d_games/15_audio_controller/snippets/audiocontroller.cs +++ b/articles/tutorials/building_2d_games/15_audio_controller/snippets/audiocontroller.cs @@ -256,7 +256,7 @@ public void ResumeAudio() /// public void MuteAudio() { - // Store the volume so they can be restored during ResumeAudio + // Store the volume so they can be restored during UnmuteAudio _previousSongVolume = MediaPlayer.Volume; _previousSoundEffectVolume = SoundEffect.MasterVolume;