OSDN Git Service

Small code clean-up.
authorLoRd_MuldeR <mulder2@gmx.de>
Sat, 28 Mar 2020 16:51:58 +0000 (17:51 +0100)
committerLoRd_MuldeR <mulder2@gmx.de>
Sat, 28 Mar 2020 16:51:58 +0000 (17:51 +0100)
src/Dialog_About.cpp

index b63e2eb..ba7ab41 100644 (file)
@@ -250,19 +250,19 @@ AboutDialog::~AboutDialog(void)
 
 int AboutDialog::exec()
 {
-       if(m_settings->soundsEnabled())
+       if(m_firstStart)
        {
-               if(m_firstStart)
+               if (m_settings->soundsEnabled())
                {
-                       if(!MUtils::Sound::play_sound_file("imageres.dll", 5080, true))
+                       if (!MUtils::Sound::play_sound_file("imageres.dll", 5080, true))
                        {
                                MUtils::Sound::play_system_sound("SystemStart", true);
                        }
                }
-               else
-               {
-                       PLAY_SOUND_OPTIONAL("ghost", true);
-               }
+       }
+       else
+       {
+               PLAY_SOUND_OPTIONAL("ghost", true);
        }
        
        switch(QDialog::exec())
@@ -331,10 +331,7 @@ void AboutDialog::tabChanged(int index, const bool silent)
        }
 
        //Play tick sound
-       if(m_settings->soundsEnabled() && (!silent))
-       {
-               PLAY_SOUND_OPTIONAL("tick", true);
-       }
+       PLAY_SOUND_OPTIONAL("tick", true);
 
        //Scroll to the top
        if(QWidget *tab = ui->tabWidget->widget(index))