Browse Source

fix a return value bug

Sven Czarnian 3 years ago
parent
commit
076109be41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PlugIn.cpp

+ 1 - 1
src/PlugIn.cpp

@@ -421,7 +421,7 @@ bool PlugIn::OnCompileCommand(const char* cmdline) {
             this->DisplayUserMessage(PLUGIN_NAME, "INFO", "Playback is ignored in AMAN", true, true, false, false, false);
     }
 
-    return false;
+    return retval;
 }
 
 void PlugIn::OnGetTagItem(EuroScopePlugIn::CFlightPlan flightPlan, EuroScopePlugIn::CRadarTarget radarTarget,