Changed class name to remove VS name violation warning

This commit is contained in:
Travis Nickles 2019-02-22 01:50:50 -06:00
parent a3c51c8688
commit abad91ca2a

View File

@ -107,7 +107,7 @@ namespace DS4Windows.VJoyFeeder
//namespace vJoyInterfaceWrap //namespace vJoyInterfaceWrap
//{ //{
[SuppressUnmanagedCodeSecurity] [SuppressUnmanagedCodeSecurity]
public class vJoy public class VJoy
{ {
/***************************************************/ /***************************************************/
@ -634,7 +634,7 @@ namespace DS4Windows.VJoyFeeder
static bool vJoyInitialized = false; static bool vJoyInitialized = false;
static bool vJoyAvailable = false; static bool vJoyAvailable = false;
static vJoy vJoyObj = null; static VJoy vJoyObj = null;
vJoyFeeder() vJoyFeeder()
{ {
@ -657,7 +657,7 @@ namespace DS4Windows.VJoyFeeder
try try
{ {
if (vJoyObj == null) vJoyObj = new vJoy(); if (vJoyObj == null) vJoyObj = new VJoy();
if (vJoyObj.vJoyEnabled() && vJoyObj.GetVJDAxisExist(vJoyID, axis)) if (vJoyObj.vJoyEnabled() && vJoyObj.GetVJDAxisExist(vJoyID, axis))
{ {