1
0
mirror of https://github.com/minetest/minetest.git synced 2025-07-01 23:50:22 +02:00

Fix argument type of the RaiseException() function

This commit is contained in:
FessWolf
2014-04-22 22:19:49 +03:00
parent 127f354e7a
commit 1c8d8e6c79

View File

@ -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__)