mirror of
				https://github.com/rofafor/vdr-plugin-femon.git
				synced 2023-10-10 11:36:53 +00:00 
			
		
		
		
	Fixed the channel frequency value.
This commit is contained in:
		@@ -524,8 +524,9 @@ cString getAC3DialogLevel(int value)
 | 
			
		||||
 | 
			
		||||
cString getFrequencyMHz(int value)
 | 
			
		||||
{
 | 
			
		||||
   while (value > 20000) value /= 1000;
 | 
			
		||||
   return cString::sprintf("%d %s", value, tr("MHz"));
 | 
			
		||||
  double freq = value;
 | 
			
		||||
  while (freq > 20000.0) freq /= 1000.0;
 | 
			
		||||
  return cString::sprintf("%s %s", *dtoa(freq, "%lg"), tr("MHz"));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
cString getAudioSamplingFreq(int value)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user