Fix lights on Windows with only one device available (http://www.stepmania.com/forums/showthread.php?t=20002)

This commit is contained in:
Colby Klein
2009-07-07 15:48:32 +00:00
parent beade074a2
commit fba8eafb54
+1 -1
View File
@@ -497,7 +497,7 @@ GameInput LightsManager::GetFirstLitGameButtonLight()
bool LightsManager::IsEnabled() const
{
return m_vpDrivers.size() > 1 || PREFSMAN->m_bDebugLights;
return m_vpDrivers.size() >= 1 || PREFSMAN->m_bDebugLights;
}