diff --git a/src/arch/Lights/LightsDriver_PacDrive.cpp b/src/arch/Lights/LightsDriver_PacDrive.cpp index 139c1326ed..a61953eb65 100644 --- a/src/arch/Lights/LightsDriver_PacDrive.cpp +++ b/src/arch/Lights/LightsDriver_PacDrive.cpp @@ -1,5 +1,5 @@ // LightsDriver_PacDrive for use with a PacDrive hooked up with LEDs -// You need PacDrive32.dll in the StepMania directory to use this. +// You need PacDrive64.dll in the StepMania directory to use this. #include "global.h" #include "LightsDriver_PacDrive.h" @@ -21,16 +21,16 @@ PacSetLEDStates* m_pacset = nullptr; int iLightingOrder = 0; //Adds new preference to allow for different light wiring setups -static Preference g_sPacDriveLightOrdering("PacDriveLightOrdering", "minimaid"); +static Preference g_sPacDriveLightOrdering("PacDriveLightOrdering", "lumenar"); LightsDriver_PacDrive::LightsDriver_PacDrive() { // init io.dll - PachDLL = LoadLibrary("pacdrive32.dll"); + PachDLL = LoadLibrary("pacdrive64.dll"); if(PachDLL == nullptr) { - MessageBox(nullptr, "Could not LoadLibrary( pacdrive32.dll ).", "ERROR", MB_OK ); + MessageBox(nullptr, "Could not LoadLibrary( pacdrive64.dll ).", "ERROR", MB_OK ); return; }