fix a typo in function name SGDeviceList::SenseCommRunning()
This commit is contained in:
@@ -59,9 +59,9 @@ int32 FSGDeviceList::ActiveDevices()
|
||||
return SGCoreImpl_FSGDeviceListImpl_ActiveDevices();
|
||||
}
|
||||
|
||||
bool FSGDeviceList::SenseCommRunning()
|
||||
bool FSGDeviceList::SenseComRunning()
|
||||
{
|
||||
return SGCoreImpl_FSGDeviceListImpl_SenseCommRunning();
|
||||
return SGCoreImpl_FSGDeviceListImpl_SenseComRunning();
|
||||
}
|
||||
|
||||
void FSGDeviceList::Dispose()
|
||||
|
||||
@@ -64,7 +64,7 @@ public:
|
||||
/**
|
||||
* Returns true if the SenseCom program is running.
|
||||
*/
|
||||
static bool SenseCommRunning();
|
||||
static bool SenseComRunning();
|
||||
|
||||
/**
|
||||
* Clear the device list, and block any further attempt to add to it until ReInitialize is called.
|
||||
|
||||
@@ -57,7 +57,7 @@ int32 FSGDeviceListImpl::ActiveDevices()
|
||||
return FDeviceListType::ActiveDevices();
|
||||
}
|
||||
|
||||
bool FSGDeviceListImpl::SenseCommRunning()
|
||||
bool FSGDeviceListImpl::SenseComRunning()
|
||||
{
|
||||
return FDeviceListType::SenseComRunning();
|
||||
}
|
||||
|
||||
@@ -1322,9 +1322,9 @@ int32 SGCoreImpl_FSGDeviceListImpl_ActiveDevices()
|
||||
return FSGDeviceListImpl::ActiveDevices();
|
||||
}
|
||||
|
||||
bool SGCoreImpl_FSGDeviceListImpl_SenseCommRunning()
|
||||
bool SGCoreImpl_FSGDeviceListImpl_SenseComRunning()
|
||||
{
|
||||
return FSGDeviceListImpl::SenseCommRunning();
|
||||
return FSGDeviceListImpl::SenseComRunning();
|
||||
}
|
||||
|
||||
void SGCoreImpl_FSGDeviceListImpl_Dispose()
|
||||
|
||||
@@ -53,7 +53,7 @@ public:
|
||||
public:
|
||||
static int32 ActiveDevices();
|
||||
|
||||
static bool SenseCommRunning();
|
||||
static bool SenseComRunning();
|
||||
|
||||
static void Dispose();
|
||||
|
||||
|
||||
@@ -680,7 +680,7 @@ SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGDeviceImpl_ToString(
|
||||
|
||||
SENSEGLOVECOREIMPL_PUBLIC_API int32 SGCoreImpl_FSGDeviceListImpl_ActiveDevices();
|
||||
|
||||
SENSEGLOVECOREIMPL_PUBLIC_API bool SGCoreImpl_FSGDeviceListImpl_SenseCommRunning();
|
||||
SENSEGLOVECOREIMPL_PUBLIC_API bool SGCoreImpl_FSGDeviceListImpl_SenseComRunning();
|
||||
|
||||
SENSEGLOVECOREIMPL_PUBLIC_API void SGCoreImpl_FSGDeviceListImpl_Dispose();
|
||||
|
||||
|
||||
@@ -43,9 +43,9 @@ int32 USGDeviceListKismetLibrary::ActiveDevices()
|
||||
return FSGDeviceList::ActiveDevices();
|
||||
}
|
||||
|
||||
bool USGDeviceListKismetLibrary::SenseCommRunning()
|
||||
bool USGDeviceListKismetLibrary::SenseComRunning()
|
||||
{
|
||||
return FSGDeviceList::SenseCommRunning();
|
||||
return FSGDeviceList::SenseComRunning();
|
||||
}
|
||||
|
||||
void USGDeviceListKismetLibrary::Dispose()
|
||||
|
||||
@@ -66,7 +66,7 @@ public:
|
||||
* Returns true if the SenseCom program is running.
|
||||
*/
|
||||
UFUNCTION(BlueprintCallable, Category="SenseGlove | Core | Device List")
|
||||
static bool SenseCommRunning();
|
||||
static bool SenseComRunning();
|
||||
|
||||
/**
|
||||
* Clear the device list, and block any further attempt to add to it until ReInitialize is called.
|
||||
|
||||
Reference in New Issue
Block a user