diff --git a/logipy/logi_arx.py b/logipy/logi_arx.py index c3b6733..251c86d 100644 --- a/logipy/logi_arx.py +++ b/logipy/logi_arx.py @@ -63,7 +63,7 @@ class SDKNotFoundException: def load_dll(path_dll = None): if not path_dll: bitness = 'x86' if platform.architecture()[0] == '32bit' else 'x64' - subpath_dll = r'/Logitech Gaming Software/SDK/Arx Control/{}/LogitechGArxControl.dll'.format(bitness) + subpath_dll = r'/LGHUB/legacy_arx_control_sdk_{}.dll'.format(bitness) try: subpath_lgs = os.environ['ProgramW6432'] except KeyError: @@ -198,4 +198,4 @@ def logi_arx_shutdown(): arx_dll.LogiArxShutdown() return True else: - return False \ No newline at end of file + return False diff --git a/logipy/logi_led.py b/logipy/logi_led.py index 8c46125..e21fb21 100644 --- a/logipy/logi_led.py +++ b/logipy/logi_led.py @@ -222,7 +222,7 @@ class SDKNotFoundException: def load_dll(path_dll = None): if not path_dll: bitness = 'x86' if platform.architecture()[0] == '32bit' else 'x64' - subpath_dll = r'/Logitech Gaming Software/SDK/LED/{}/LogitechLed.dll'.format(bitness) + subpath_dll = r'/LGHUB/sdk_legacy_led_{}.dll'.format(bitness) try: subpath_lgs = os.environ['ProgramW6432'] except KeyError: