Skip to content

Commit a2cfd4d

Browse files
authored
Bug fix
1 parent e877622 commit a2cfd4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/encode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ SEXP encode_channel_native_c(SEXP codes, SEXP channel, SEXP value, SEXP space, S
13091309
case HSL: return encode_channel_native_impl<ColorSpace::Hsl>(codes, channel, value, op, white, na);
13101310
case HSB: return encode_channel_native_impl<ColorSpace::Hsb>(codes, channel, value, op, white, na);
13111311
case HSV: return encode_channel_native_impl<ColorSpace::Hsv>(codes, channel, value, op, white, na);
1312-
case LAB: return encode_channel_impl<ColorSpace::Lab>(codes, channel, value, op, white, na);
1312+
case LAB: return encode_channel_native_impl<ColorSpace::Lab>(codes, channel, value, op, white, na);
13131313
case HUNTERLAB: return encode_channel_native_impl<ColorSpace::HunterLab>(codes, channel, value, op, white, na);
13141314
case LCH: return encode_channel_native_impl<ColorSpace::Lch>(codes, channel, value, op, white, na);
13151315
case LUV: return encode_channel_native_impl<ColorSpace::Luv>(codes, channel, value, op, white, na);

0 commit comments

Comments
 (0)