From 38561656233229536fb5bf8e5488191e470c495e Mon Sep 17 00:00:00 2001 From: Steel Titanium Date: Wed, 27 Dec 2017 13:18:20 -0500 Subject: [PATCH] Indentation cleanup --- src/d_netcmd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 041cb134b..2abba77ac 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -3914,23 +3914,23 @@ static void Command_Tunes_f(void) static void Command_RestartAudio_f(void) { - if (dedicated) { // No point in doing anything if game is a dedicated server. + if (dedicated) // No point in doing anything if game is a dedicated server. return; -} + S_StopMusic(); I_ShutdownMusic(); I_ShutdownSound(); I_StartupSound(); I_InitMusic(); -// These must be called or no sound and music untill manually set. +// These must be called or no sound and music until manually set. I_SetSfxVolume(cv_soundvolume.value); I_SetDigMusicVolume(cv_digmusicvolume.value); I_SetMIDIMusicVolume(cv_midimusicvolume.value); - if (Playing() && (!dedicated)) { // Gotta make sure the player is in a level + if (Playing() && (!dedicated)) // Gotta make sure the player is in a level P_RestoreMusic(&players[consoleplayer]); - } + } /** Quits a game and returns to the title screen.