Skip to content

Commit

Permalink
Merge pull request #158 from hbeni/Issue-157
Browse files Browse the repository at this point in the history
Plugin: RDF Broken due to wrong C preprocessor annotation (Fix #157)
  • Loading branch information
hbeni authored Mar 31, 2022
2 parents 0a2702d + b6a52bc commit f47658d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/mumble-plugin/fgcom-mumble.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
// Plugin Version
#define FGCOM_VERSION_MAJOR 1
#define FGCOM_VERSION_MINOR 0
#define FGCOM_VERSION_PATCH 0
#define FGCOM_VERSION_PATCH 1

/*
* Is the plugin currently active?
Expand Down
2 changes: 1 addition & 1 deletion client/mumble-plugin/lib/io_UDPServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ std::map<int, fgcom_udp_parseMsg_result> fgcom_udp_parseMsg(char buffer[MAXLINE]
//pluginDbg("[UDP-server] UDP-client start thread check: registeredClientTgtPort="+std::to_string(fgcom_local_client[iid].clientTgtPort)+"; udpClientRunning="+std::to_string(udpClientRunning));
if (fgcom_local_client[iid].clientTgtPort > 0 && !udpClientRunning) {
pluginDbg("[UDP-server] UDP-client requested: "+std::to_string(fgcom_local_client[iid].clientTgtPort));
#ifdef NO_UDPCLIENT
#ifndef NO_UDPCLIENT
std::thread udpClientThread(fgcom_spawnUDPClient);
udpClientThread.detach();
//std::cout << "FGCOM: udp client started; id=" << udpClientThread_id << std::endl;
Expand Down

0 comments on commit f47658d

Please sign in to comment.