From 4251b28e88246431577e593c8ce8ee4edb743e33 Mon Sep 17 00:00:00 2001 From: Richard Harrison Date: Tue, 29 Sep 2020 14:00:36 +0200 Subject: [PATCH] Emesary: add missing property initialisation to constructor --- simgear/nasal/cppbind/NasalEmesaryInterface.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/nasal/cppbind/NasalEmesaryInterface.hxx b/simgear/nasal/cppbind/NasalEmesaryInterface.hxx index df991aad..5f9e1665 100644 --- a/simgear/nasal/cppbind/NasalEmesaryInterface.hxx +++ b/simgear/nasal/cppbind/NasalEmesaryInterface.hxx @@ -63,7 +63,7 @@ namespace nasal class NasalMainLoopRecipient : public simgear::Emesary::IReceiver { public: - NasalMainLoopRecipient() : receiveCount(0) { + NasalMainLoopRecipient() : receiveCount(0), Active(false), CanWait(false) { simgear::Emesary::GlobalTransmitter::instance()->Register(*this); } virtual ~NasalMainLoopRecipient() {