This should never have been in defaults - sorry about that
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
#include "CommonMetrics.h"
|
#include "CommonMetrics.h"
|
||||||
#include "Style.h"
|
#include "Style.h"
|
||||||
|
|
||||||
const RString DEFAULT_LIGHTS_DRIVER = "PIUIO,SystemMessage,Export";
|
const RString DEFAULT_LIGHTS_DRIVER = "SystemMessage,Export";
|
||||||
static Preference<RString> g_sLightsDriver( "LightsDriver", "" ); // "" == DEFAULT_LIGHTS_DRIVER
|
static Preference<RString> g_sLightsDriver( "LightsDriver", "" ); // "" == DEFAULT_LIGHTS_DRIVER
|
||||||
Preference<float> g_fLightsFalloffSeconds( "LightsFalloffSeconds", 0.1f );
|
Preference<float> g_fLightsFalloffSeconds( "LightsFalloffSeconds", 0.1f );
|
||||||
Preference<float> g_fLightsAheadSeconds( "LightsAheadSeconds", 0.05f );
|
Preference<float> g_fLightsAheadSeconds( "LightsAheadSeconds", 0.05f );
|
||||||
|
|||||||
@@ -24,9 +24,7 @@ InputHandler_Linux_PIUIO::InputHandler_Linux_PIUIO()
|
|||||||
fd = open( "/dev/piuio0", O_RDONLY );
|
fd = open( "/dev/piuio0", O_RDONLY );
|
||||||
if( fd < 0 )
|
if( fd < 0 )
|
||||||
{
|
{
|
||||||
/* As it happens, most people don't have one of these. Don't log this.
|
LOG->Warn( "Couldn't open PIUIO device: %s", strerror(errno) );
|
||||||
* TODO: Log it if it's in the device list. - Colby */
|
|
||||||
//LOG->Warn( "Couldn't open PIUIO device: %s", strerror(errno) );
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
#include "LoadingWindow/LoadingWindow_Gtk.h"
|
#include "LoadingWindow/LoadingWindow_Gtk.h"
|
||||||
#endif
|
#endif
|
||||||
#if defined(LINUX)
|
#if defined(LINUX)
|
||||||
#define DEFAULT_INPUT_DRIVER_LIST "PIUIO,X11,Event,Joystick"
|
#define DEFAULT_INPUT_DRIVER_LIST "X11,Event,Joystick"
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_INPUT_DRIVER_LIST "X11"
|
#define DEFAULT_INPUT_DRIVER_LIST "X11"
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user