mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Remove extraneous trailing semicolon
This commit is contained in:
parent
47aabf244b
commit
654d7a97e7
@ -3633,7 +3633,7 @@ FORCEINLINE fltx4 LoadUnalignedFloatSIMD(const float* pFlt)
|
||||
/// replicate a single 32 bit integer value to all 4 components of an m128
|
||||
FORCEINLINE fltx4 ReplicateIX4(int i)
|
||||
{
|
||||
fltx4 value = _mm_set_ss(*((float*)&i));;
|
||||
fltx4 value = _mm_set_ss(*((float*)&i));
|
||||
return _mm_shuffle_ps(value, value, 0);
|
||||
}
|
||||
|
||||
|
@ -16,9 +16,9 @@ public:
|
||||
virtual void* ProcessSetConVar(void) = 0;
|
||||
virtual bool nullsub_0(void) = 0;
|
||||
virtual char ProcessSignonState(void* msg) = 0; // NET_SignonState
|
||||
virtual void* ProcessMove(void) = 0;;
|
||||
virtual void* ProcessVoiceData(void) = 0;;
|
||||
virtual void* ProcessDurangoVoiceData(void) = 0;;
|
||||
virtual void* ProcessMove(void) = 0;
|
||||
virtual void* ProcessVoiceData(void) = 0;
|
||||
virtual void* ProcessDurangoVoiceData(void) = 0;
|
||||
virtual bool nullsub_1(void) = 0;
|
||||
virtual void* ProcessLoadingProgress(void) = 0;
|
||||
virtual void* ProcessPersistenceRequestSave(void) = 0;
|
||||
|
@ -9,12 +9,12 @@ namespace Forms
|
||||
class DragEventArgs
|
||||
{
|
||||
public:
|
||||
DragEventArgs(IDataObject* Data, const int32_t KeyState, const int32_t X, const int32_t Y, const DragDropEffects AllowedEffect, DragDropEffects Effect);;
|
||||
DragEventArgs(IDataObject* Data, const int32_t KeyState, const int32_t X, const int32_t Y, const DragDropEffects AllowedEffect, DragDropEffects Effect);
|
||||
~DragEventArgs() = default;
|
||||
|
||||
// The data associated with this event.
|
||||
IDataObject* Data;
|
||||
// The current statie of the shift, ctrl, and alt keys.
|
||||
// The current state of the shift, ctrl, and alt keys.
|
||||
const int32_t KeyState;
|
||||
|
||||
// The mouse X location.
|
||||
|
@ -68,7 +68,7 @@ namespace Forms
|
||||
}
|
||||
case WM_PAINT:
|
||||
{
|
||||
auto Result = CallWindowProc(Win32PerThreadInfo.lpMsgBoxProc, hWnd, uMsg, wParam, lParam);;
|
||||
auto Result = CallWindowProc(Win32PerThreadInfo.lpMsgBoxProc, hWnd, uMsg, wParam, lParam);
|
||||
|
||||
RECT Rc{};
|
||||
GetClientRect(hWnd, &Rc);
|
||||
|
2
r5dev/thirdparty/cppnet/cppkore/Process.cpp
vendored
2
r5dev/thirdparty/cppnet/cppkore/Process.cpp
vendored
@ -591,7 +591,7 @@ namespace Diagnostics
|
||||
Pi.ProcessId = NProcessId;
|
||||
Pi.HandleCount = (uint32_t)NProcessInfo->HandleCount;
|
||||
Pi.SessionId = (uint32_t)NProcessInfo->SessionId;
|
||||
Pi.PoolPagedBytes = (uint64_t)NProcessInfo->QuotaPagedPoolUsage;;
|
||||
Pi.PoolPagedBytes = (uint64_t)NProcessInfo->QuotaPagedPoolUsage;
|
||||
Pi.PoolNonPagedBytes = (uint64_t)NProcessInfo->QuotaNonPagedPoolUsage;
|
||||
Pi.VirtualBytes = (uint64_t)NProcessInfo->VirtualSize;
|
||||
Pi.VirtualBytesPeak = (uint64_t)NProcessInfo->PeakVirtualSize;
|
||||
|
Loading…
x
Reference in New Issue
Block a user