Diff for /np2/macos9/dialog/d_screen.cpp between versions 1.1 and 1.2

version 1.1, 2003/10/24 10:58:48 version 1.2, 2004/01/27 07:24:26
Line 14 Line 14
   
 static void setchip(ControlHandle *btn, UINT chip) {  static void setchip(ControlHandle *btn, UINT chip) {
   
         SetControlValue(btn[0], (chip == 0));          SetControlValue(btn[0], (chip == 0)?1:0);
         SetControlValue(btn[1], (chip == 1));          SetControlValue(btn[1], (chip == 1)?1:0);
 }  }
   
 static void setgrcg(ControlHandle *btn, UINT grcg) {  static void setgrcg(ControlHandle *btn, UINT grcg) {
   
         SetControlValue(btn[0], (grcg == 0));          SetControlValue(btn[0], (grcg == 0)?1:0);
         SetControlValue(btn[1], (grcg == 1));          SetControlValue(btn[1], (grcg == 1)?1:0);
         SetControlValue(btn[2], (grcg == 2));          SetControlValue(btn[2], (grcg == 2)?1:0);
         SetControlValue(btn[3], (grcg == 3));          SetControlValue(btn[3], (grcg == 3)?1:0);
 }  }
   
   

Removed from v.1.1  
changed lines
  Added in v.1.2


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