1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Razer - Report Razer error code on plugin load failure

This commit is contained in:
SpoinkyNL 2020-04-07 23:00:47 +02:00
parent 0de9604ca0
commit d2637ba6a3

View File

@ -1,5 +1,6 @@
using System.IO;
using Artemis.Core.Plugins.Abstract;
using Artemis.Core.Plugins.Exceptions;
using Artemis.Core.Plugins.Models;
using Artemis.Core.Services.Interfaces;
using RGB.NET.Core;
@ -24,7 +25,14 @@ namespace Artemis.Plugins.Devices.Razer
RGB.NET.Devices.Razer.RazerDeviceProvider.PossibleX86NativePaths.Add(Path.Combine(PluginInfo.Directory.FullName, "x86", "RzChromaSDK.dll"));
// RGB.NET.Devices.Razer.RazerDeviceProvider.Instance.LoadEmulatorDevices = true;
_rgbService.AddDeviceProvider(RgbDeviceProvider);
try
{
_rgbService.AddDeviceProvider(RgbDeviceProvider);
}
catch (RazerException e)
{
throw new ArtemisPluginException("Failed to activate Razer plugin, error code: " + e.ErrorCode, e);
}
}
}
}