mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Fix argument type of the RaiseException() function
This commit is contained in:
parent
41bc24477b
commit
9b142157b0
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ inline u32 getTime(TimePrecision prec)
|
|||
info.dwThreadID = -1;
|
||||
info.dwFlags = 0;
|
||||
__try {
|
||||
RaiseException(0x406D1388, 0, sizeof(info) / sizeof(DWORD), (DWORD *) &info);
|
||||
RaiseException(0x406D1388, 0, sizeof(info) / sizeof(DWORD), (ULONG_PTR *) &info);
|
||||
} __except (EXCEPTION_CONTINUE_EXECUTION) {}
|
||||
}
|
||||
#elif defined(__APPLE__)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue