Switch to loading the PacDrive64.dll + Update Default

This commit is contained in:
teejusb
2022-06-21 12:16:15 -07:00
parent 95a07e6803
commit 7d88febd51
+4 -4
View File
@@ -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<RString> g_sPacDriveLightOrdering("PacDriveLightOrdering", "minimaid");
static Preference<RString> 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;
}