From 5335c91f4a10081ef8b04a6d47403c0efc064647 Mon Sep 17 00:00:00 2001 From: scuri Date: Thu, 10 Sep 2009 17:33:34 +0000 Subject: # Fixed: RAW format initialization. --- html/en/rep_guide.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html') diff --git a/html/en/rep_guide.html b/html/en/rep_guide.html index 144c11f..5c70790 100644 --- a/html/en/rep_guide.html +++ b/html/en/rep_guide.html @@ -35,9 +35,9 @@ void* buffer = malloc(size);
float value;
 if (is_packed) 
-value = idata[y*width*depth + x*depth + d]
+  value = idata[y*width*depth + x*depth + d]
 else
-value = idata[d*width*height + y*width + x]
+ value = idata[d*width*height + y*width + x]
-- cgit v1.2.3