From e9a01c1d2f6edaf2902f82c73c98ff7d25627878 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 22 Apr 2019 01:18:55 +1000 Subject: Cleanup: comments (long lines) in imbuf --- source/blender/imbuf/intern/radiance_hdr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/imbuf/intern/radiance_hdr.c') diff --git a/source/blender/imbuf/intern/radiance_hdr.c b/source/blender/imbuf/intern/radiance_hdr.c index e3ab460cce4..238f58b7834 100644 --- a/source/blender/imbuf/intern/radiance_hdr.c +++ b/source/blender/imbuf/intern/radiance_hdr.c @@ -198,7 +198,8 @@ static void FLOAT2RGBE(fCOLOR fcol, RGBE rgbe) int imb_is_a_hdr(const unsigned char *buf) { /* For recognition, Blender only loads first 32 bytes, so use #?RADIANCE id instead */ - /* update: actually, the 'RADIANCE' part is just an optional program name, the magic word is really only the '#?' part */ + /* update: actually, the 'RADIANCE' part is just an optional program name, + * the magic word is really only the '#?' part */ //if (strstr((char *)buf, "#?RADIANCE")) return 1; if (strstr((char *)buf, "#?")) return 1; -- cgit v1.2.3