summaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorscuri <scuri>2009-09-10 17:33:34 +0000
committerscuri <scuri>2009-09-10 17:33:34 +0000
commit5335c91f4a10081ef8b04a6d47403c0efc064647 (patch)
tree742e83f8cfbf52e0d82c1e07f733ca4a5212b535 /html
parent67475cb6aa3af3a0c65351562c22f25814a45fcb (diff)
# Fixed: RAW format initialization.
Diffstat (limited to 'html')
-rw-r--r--html/en/rep_guide.html4
1 files changed, 2 insertions, 2 deletions
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);</pre>
<pre>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]</pre>
+ value = idata[d*width*height + y*width + x]</pre>
</div>
<div align="left">