Depth2Image.st
changeset 2042 58c0228331bb
parent 1812 beeaf75b245b
child 2044 9ea84b4ba249
--- a/Depth2Image.st	Thu Feb 05 12:54:05 1998 +0100
+++ b/Depth2Image.st	Thu Feb 05 15:20:43 1998 +0100
@@ -423,8 +423,8 @@
      && __bothSmallInteger(w, mX)
      && __isByteArray(srcBytes) && __isByteArray(dstBytes)) {
 	_mag = _intVal(mX);
-	srcP = _ByteArrayInstPtr(srcBytes)->ba_element - 1 + _intVal(srcStart);
-	dstP = _ByteArrayInstPtr(dstBytes)->ba_element - 1 + _intVal(dstStart);
+	srcP = __ByteArrayInstPtr(srcBytes)->ba_element - 1 + _intVal(srcStart);
+	dstP = __ByteArrayInstPtr(dstBytes)->ba_element - 1 + _intVal(dstStart);
 	_pixels = _intVal(w);
 
 	 switch (_mag) {
@@ -532,5 +532,5 @@
 !Depth2Image class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Depth2Image.st,v 1.26 1997-07-18 22:41:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Depth2Image.st,v 1.27 1998-02-05 14:20:20 cg Exp $'
 ! !