Show
Ignore:
Timestamp:
02/24/07 21:33:27 (2 years ago)
Author:
ug
Message:

Fix some of the small FIXME\'s

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 06/libkombilo/abstractboard.cpp

    r212 r225  
    3434} 
    3535 
    36 // coordinates used here: (1,1)-(19,19) FIXME what? 
     36// coordinates used here: top left = (0,0) - bottom right = (boardsize-1,boardsize-1) 
    3737MoveNC::MoveNC(char X, char Y, char COLOR) { 
    3838  x = X; 
     
    163163void abstractBoard::undostack_append_pass() { 
    164164  if (DEBUG_ABSTRACTBOARD) printf("AB::undostack_append_pass 0\n"); 
    165   undostack.push(Move(20,20,'-')); // FIXME should be (19,19)? 
     165  undostack.push(Move(19,19,'-')); 
    166166  if (DEBUG_ABSTRACTBOARD) printf("AB::undostack_append_pass 100\n"); 
    167167}