From 7d88febd51dc02ddfbca9df6cc0a00fc1a7aff44 Mon Sep 17 00:00:00 2001 From: teejusb <5017202+teejusb@users.noreply.github.com> Date: Tue, 21 Jun 2022 12:16:15 -0700 Subject: [PATCH] Switch to loading the PacDrive64.dll + Update Default --- src/arch/Lights/LightsDriver_PacDrive.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }