2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

Color.pm: hsb2rgb fix (forum #41251)

git-svn-id: https://svn.fhem.de/fhem/trunk@9280 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2015-09-20 08:07:41 +00:00
parent a452a02807
commit 6864563679

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