Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix argument type of the RaiseException() function
  • Loading branch information
FessWolf authored and ShadowNinja committed Apr 23, 2014
1 parent 41bc244 commit 9b14215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/porting.h
Expand Up @@ -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__)
Expand Down

0 comments on commit 9b14215

Please sign in to comment.