Depth4Image.st
changeset 2401 025c115d121a
parent 2265 083cc5cb90c4
child 2523 4c197af8cc50
--- a/Depth4Image.st	Thu Nov 19 13:06:53 1998 +0100
+++ b/Depth4Image.st	Tue Nov 24 16:14:05 1998 +0100
@@ -231,7 +231,7 @@
                 }
                 clr = ap[idx];
                 v = __intVal(clr);
-#ifdef MSBFIRST
+#ifdef __MSBFIRST
                 ((short *)dstPtr)[0] = v;
 #else
 # ifdef xxSWAP_BYTES
@@ -288,7 +288,7 @@
                     }
                     clr = ap[idx];
                     v = __intVal(clr);
-#ifdef MSBFIRST
+#ifdef __MSBFIRST
                     ((long *)dstPtr)[0] = v;
 #else
                     dstPtr[0] = (v>>24) & 0xFF;
@@ -967,5 +967,5 @@
 !Depth4Image class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Depth4Image.st,v 1.36 1998-08-24 12:41:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Depth4Image.st,v 1.37 1998-11-24 15:14:01 cg Exp $'
 ! !