From 291696fc1f1e2fc1b5b168e79ce91215bed63e0e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 5 Oct 2005 22:14:48 +0000 Subject: [PATCH] fix backwards --- stepmania/src/ScreenDemonstration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenDemonstration.cpp b/stepmania/src/ScreenDemonstration.cpp index da99ee2a62..bb1ec9d99f 100644 --- a/stepmania/src/ScreenDemonstration.cpp +++ b/stepmania/src/ScreenDemonstration.cpp @@ -20,7 +20,7 @@ ScreenDemonstration::ScreenDemonstration( CString sName ) : ScreenJukebox( sName { LOG->Trace( "ScreenDemonstration::ScreenDemonstration()" ); m_bDemonstration = true; - SOUNDMAN->SetPlayOnlyCriticalSounds( GAMESTATE->IsTimeToPlayAttractSounds() ); // mute attract sounds + SOUNDMAN->SetPlayOnlyCriticalSounds( !GAMESTATE->IsTimeToPlayAttractSounds() ); // mute attract sounds } void ScreenDemonstration::Init()