Skip to content

Commit

Permalink
Fix windows compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsando committed Jul 31, 2024
1 parent 54d58e1 commit 00913ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hx/Thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ class hxCondition : public hx::Object {
void Wait() {
#ifdef HX_WINDOWS
#ifndef HXCPP_WINXP_COMPAT
SleepConditionVariableCS(cond,&cs,INFINITE);
SleepConditionVariableCS(&cond,&cs,INFINITE);
#endif
#else
pthread_cond_wait(cond, mutex);
Expand Down

0 comments on commit 00913ef

Please sign in to comment.