From 3ebe89a76bbac3dd22c3ff3583d30689464abc3a Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 22 Feb 2005 03:14:54 +0000 Subject: [PATCH] fix VC7 warning --- stepmania/src/OptionRow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/OptionRow.cpp b/stepmania/src/OptionRow.cpp index 5480c55b17..26e13454d2 100644 --- a/stepmania/src/OptionRow.cpp +++ b/stepmania/src/OptionRow.cpp @@ -417,7 +417,7 @@ void OptionRow::UpdateEnabledDisabled( else color = colorDisabled; - float fEnabledDisabledAlpha = bRowEnabled ? 1:0; + float fEnabledDisabledAlpha = bRowEnabled ? 1.0f:0.0f; unsigned item_no = m_RowDef.bOneChoiceForAllPlayers ? 0 : pn;