mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-12 16:58:39 +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.dwThreadID = -1;
|
||||||
info.dwFlags = 0;
|
info.dwFlags = 0;
|
||||||
__try {
|
__try {
|
||||||
RaiseException(0x406D1388, 0, sizeof(info) / sizeof(DWORD), (DWORD *) &info);
|
RaiseException(0x406D1388, 0, sizeof(info) / sizeof(DWORD), (ULONG_PTR *) &info);
|
||||||
} __except (EXCEPTION_CONTINUE_EXECUTION) {}
|
} __except (EXCEPTION_CONTINUE_EXECUTION) {}
|
||||||
}
|
}
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue