OSXOperatingSystem.st
changeset 24378 c46855b3748f
parent 24377 2fbcb2fa6c43
child 24464 63a55c7a8813
--- a/OSXOperatingSystem.st	Thu Jun 27 15:21:18 2019 +0200
+++ b/OSXOperatingSystem.st	Thu Jun 27 15:21:58 2019 +0200
@@ -791,7 +791,8 @@
                         // pick 4 pixels (16byte with 2 INT fetches) store as 12byte (4ints)
                         unsigned INT pix12 = ((unsigned INT*)pixSrcPtr)[0];
                         unsigned INT pix34 = ((unsigned INT*)pixSrcPtr)[1];
-                        unsigned int w,
+                        unsigned int w;
+                        
                         pixSrcPtr += 4;
                         // a2 r2 g2 b2 a1 r1 g1 b1 => r1..g1..b1..r2..g2..b2
                         w = (pix12 >> 16) & 0xFF;         // r1
@@ -912,7 +913,7 @@
 
     "Created: / 25-02-2017 / 09:49:07 / cg"
     "Modified (comment): / 28-02-2017 / 15:22:17 / cg"
-    "Modified: / 27-06-2019 / 15:20:54 / Claus Gittinger"
+    "Modified: / 27-06-2019 / 15:21:51 / Claus Gittinger"
 !
 
 getMousePosition