This should never have been in defaults - sorry about that

This commit is contained in:
Devin J. Pohly
2013-05-29 15:26:56 -04:00
parent 640626e155
commit 64f59e616c
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -15,7 +15,7 @@
#include "CommonMetrics.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
Preference<float> g_fLightsFalloffSeconds( "LightsFalloffSeconds", 0.1f );
Preference<float> g_fLightsAheadSeconds( "LightsAheadSeconds", 0.05f );
@@ -24,9 +24,7 @@ InputHandler_Linux_PIUIO::InputHandler_Linux_PIUIO()
fd = open( "/dev/piuio0", O_RDONLY );
if( fd < 0 )
{
/* As it happens, most people don't have one of these. Don't log this.
* TODO: Log it if it's in the device list. - Colby */
//LOG->Warn( "Couldn't open PIUIO device: %s", strerror(errno) );
LOG->Warn( "Couldn't open PIUIO device: %s", strerror(errno) );
return;
}
+1 -1
View File
@@ -34,7 +34,7 @@
#include "LoadingWindow/LoadingWindow_Gtk.h"
#endif
#if defined(LINUX)
#define DEFAULT_INPUT_DRIVER_LIST "PIUIO,X11,Event,Joystick"
#define DEFAULT_INPUT_DRIVER_LIST "X11,Event,Joystick"
#else
#define DEFAULT_INPUT_DRIVER_LIST "X11"
#endif