forked from Mirrorlandia_minetest/minetest
Fix Windows build
Fixes the issue introduced by c1a0ebb (Fix use of uninitialised variable in class Event) causing Windows builds to fail
This commit is contained in:
parent
8fe753c3d9
commit
c92cff5d52
@ -26,7 +26,6 @@ DEALINGS IN THE SOFTWARE.
|
|||||||
#include "threading/event.h"
|
#include "threading/event.h"
|
||||||
|
|
||||||
Event::Event()
|
Event::Event()
|
||||||
: notified(false)
|
|
||||||
{
|
{
|
||||||
#if __cplusplus < 201103L
|
#if __cplusplus < 201103L
|
||||||
# ifdef _WIN32
|
# ifdef _WIN32
|
||||||
@ -34,6 +33,7 @@ Event::Event()
|
|||||||
# else
|
# else
|
||||||
pthread_cond_init(&cv, NULL);
|
pthread_cond_init(&cv, NULL);
|
||||||
pthread_mutex_init(&mutex, NULL);
|
pthread_mutex_init(&mutex, NULL);
|
||||||
|
notified = false;
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user