Diff for /np2/io/gdc.c between versions 1.32 and 1.33

version 1.32, 2004/03/23 22:39:40 version 1.33, 2004/03/24 06:07:57
Line 117  void gdc_setanalogpalall(const UINT16 *p Line 117  void gdc_setanalogpalall(const UINT16 *p
                 gdc.anareg[(c * 3) + 1] = (pal >> 4) & 15;                  gdc.anareg[(c * 3) + 1] = (pal >> 4) & 15;
                 gdc.anareg[(c * 3) + 2] = (pal >> 0) & 15;                  gdc.anareg[(c * 3) + 2] = (pal >> 0) & 15;
 #endif  #endif
                 gdc_setanalogpal(c, offsetof(RGB32, p.g), (pal >> 8) & 15);                  gdc_setanalogpal(c, offsetof(RGB32, p.g), (REG8)((pal >> 8) & 15));
                 gdc_setanalogpal(c, offsetof(RGB32, p.r), (pal >> 4) & 15);                  gdc_setanalogpal(c, offsetof(RGB32, p.r), (REG8)((pal >> 4) & 15));
                 gdc_setanalogpal(c, offsetof(RGB32, p.b), (pal >> 0) & 15);                  gdc_setanalogpal(c, offsetof(RGB32, p.b), (REG8)((pal >> 0) & 15));
         }          }
 }  }
   

Removed from v.1.32  
changed lines
  Added in v.1.33


RetroPC.NET-CVS <cvs@retropc.net>