Changeset 674


Ignore:
Timestamp:
01/10/09 22:37:54 (4 years ago)
Author:
phyrephox
Message:
  • connect4 - fixing bug that prevented winning (#187 CHDKLover)
  • symbols - updated a few icons/symbols (nobody objected...) (#168 pkasperskyi)

Hint: #number - ticket number in bugtracker, name = Coder

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/gui_4wins.c

    r655 r674  
    188188static char win_query() 
    189189{ 
    190         int i=0; 
    191         int j=0; 
    192          
    193         if (isFull(1) && isFull(2) && isFull(3) && isFull(4) && isFull(5) && isFull(6) && isFull(7)) return 9; 
     190        int i=0,j=0; 
    194191 
    195192        for(i=0;i<4;i++) 
     
    223220                } 
    224221        } 
     222 
     223        if (isFull(1) && isFull(2) && isFull(3) && isFull(4) && isFull(5) && isFull(6) && isFull(7)) return 9; 
    225224         
    226225        return 0; 
Note: See TracChangeset for help on using the changeset viewer.