diff -r 45c82a071aca -r 6c78cc6bd7a6 Source/Grid.m --- a/Source/Grid.m Wed May 28 12:47:10 2008 -0700 +++ b/Source/Grid.m Thu Jul 03 17:44:30 2008 -0700 @@ -23,6 +23,7 @@ #import "Grid.h" #import "Bit.h" #import "Game.h" +#import "Player.h" #import "QuartzUtils.h" @@ -127,7 +128,7 @@ GridCell *cell = [[_cellClass alloc] initWithGrid: self row: row column: col frame: frame]; - cell.name = [NSString stringWithFormat: @"%c%u", ('A'+row),col]; + cell.name = [NSString stringWithFormat: @"%c%u", ('A'+row),(1+col)]; return [cell autorelease]; }