From cd3be41386e39d5621dc160281ca41993101851a Mon Sep 17 00:00:00 2001 From: mfranz Date: Mon, 19 Jun 2006 10:00:25 +0000 Subject: [PATCH] Vivian MEAZZA: "Bugfix - a fix to fix the hack which hacked the TACAN Channel/freq pairing." --- src/Instrumentation/tacan.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Instrumentation/tacan.cxx b/src/Instrumentation/tacan.cxx index 402b5a59d..7d372b4d2 100755 --- a/src/Instrumentation/tacan.cxx +++ b/src/Instrumentation/tacan.cxx @@ -510,7 +510,7 @@ TACAN::searchChannel (const string& _channel){ frequency_khz = freq->get_freq(); SG_LOG( SG_INSTR, SG_DEBUG, "freq output " << frequency_khz ); //check sanity - if (frequency_khz >=9620 && frequency_khz <= 12130) + if (frequency_khz >=9620 && frequency_khz <= 121300) return frequency_khz/100; } return frequency_khz = 0; -- 2.39.5