diff --git a/stepmania/src/arch/Lights/LightsDriver.cpp b/stepmania/src/arch/Lights/LightsDriver.cpp index 72a0408984..c46a152089 100644 --- a/stepmania/src/arch/Lights/LightsDriver.cpp +++ b/stepmania/src/arch/Lights/LightsDriver.cpp @@ -18,6 +18,9 @@ void MakeLightsDrivers( const RString &driver, vector &Add ) #ifdef USE_LIGHTS_DRIVER_WIN32_PARALLEL if( !driver.CompareNoCase("Parallel") ) ret = new LightsDriver_Win32Parallel; #endif +#ifdef USE_LIGHTS_DRIVER_EXPORT + if( !driver.CompareNoCase("Export") ) ret = new LightsDriver_Export; +#endif if( ret == NULL && driver.CompareNoCase("Null") ) LOG->Trace( "Unknown lights driver name: %s", driver.c_str() );