From 180ce8eb3695f79c4aa2e827bc5e7d282a028545 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 2 Feb 2005 05:25:43 +0000 Subject: [PATCH] fix VC6 --- stepmania/src/BPMDisplay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/BPMDisplay.cpp b/stepmania/src/BPMDisplay.cpp index 076778b9c6..e7b6435172 100644 --- a/stepmania/src/BPMDisplay.cpp +++ b/stepmania/src/BPMDisplay.cpp @@ -46,7 +46,7 @@ void BPMDisplay::Update( float fDeltaTime ) { ActorFrame::Update( fDeltaTime ); - if( !CYCLE ) + if( !(bool)CYCLE ) return; if( m_BPMS.size() == 0 ) return; /* no bpm */ @@ -91,7 +91,7 @@ void BPMDisplay::SetBPMRange( const DisplayBpms &bpms ) AllIdentical = false; } - if( !CYCLE ) + if( !(bool)CYCLE ) { int MinBPM=99999999; int MaxBPM=-99999999;