Color.pm: hsb2rgb fix (forum #41251)

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@9280 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme1968
2015-09-20 08:07:41 +00:00
parent 2337221aee
commit f3e3521863

View File

@@ -221,7 +221,7 @@ hsb2rgb ($$$) {
my $g = int( $rgb[1] * 255 );
my $b = int( $rgb[2] * 255 );
return ( $h, $s, $bri );
return ( $r, $g, $b );
}
sub