Index: trunk/Ohana/src/kii/picture/CursorOps.c
===================================================================
--- trunk/Ohana/src/kii/picture/CursorOps.c	(revision 5349)
+++ trunk/Ohana/src/kii/picture/CursorOps.c	(revision 5386)
@@ -5,4 +5,5 @@
   double expand;
 
+  expand = 1.0;
   if (layout[0].expand > 0) {
     expand = 1 / (1.0*layout[0].expand);
@@ -22,4 +23,5 @@
 
   /* notice that here, expand is the reciprocal of the expand above */
+  expand = 1.0;
   if (layout[0].expand > 0) {
     expand = abs(layout[0].expand);
Index: trunk/Ohana/src/kii/picture/Remap16.c
===================================================================
--- trunk/Ohana/src/kii/picture/Remap16.c	(revision 5349)
+++ trunk/Ohana/src/kii/picture/Remap16.c	(revision 5386)
@@ -26,4 +26,5 @@
   white2 = 0x00ff & (white >> 8);
 
+  expand = expand_in = expand_out = 1.0;
   if (layout[0].expand == 0) /* set up expansions */
     layout[0].expand = 1;
Index: trunk/Ohana/src/kii/picture/Remap24.c
===================================================================
--- trunk/Ohana/src/kii/picture/Remap24.c	(revision 5349)
+++ trunk/Ohana/src/kii/picture/Remap24.c	(revision 5386)
@@ -27,4 +27,5 @@
   white3 = 0x0000ff & (white >> 16);
 
+  expand = expand_in = expand_out = 1.0;
   if (layout[0].expand == 0) /* set up expansions */
     layout[0].expand = 1;
Index: trunk/Ohana/src/kii/picture/Remap32.c
===================================================================
--- trunk/Ohana/src/kii/picture/Remap32.c	(revision 5349)
+++ trunk/Ohana/src/kii/picture/Remap32.c	(revision 5386)
@@ -20,4 +20,5 @@
   white = layout[0].white;
 
+  expand = expand_in = expand_out = 1.0;
   if (layout[0].expand == 0) /* set up expansions */
     layout[0].expand = 1;
Index: trunk/Ohana/src/kii/picture/Remap8.c
===================================================================
--- trunk/Ohana/src/kii/picture/Remap8.c	(revision 5349)
+++ trunk/Ohana/src/kii/picture/Remap8.c	(revision 5386)
@@ -20,4 +20,5 @@
   white = layout[0].white;
 
+  expand = expand_in = expand_out = 1.0;
   if (layout[0].expand == 0) /* set up expansions */
     layout[0].expand = 1;
