fixed some typos and forgotten debugging stuff

This commit is contained in:
Christian Kroll 2011-03-11 07:04:44 +00:00
parent 04eee8849e
commit 681c603da5
1 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ typedef unsigned int coord_t;
#define LOOP_DETECT_BUFFER_SIZE 8U #define LOOP_DETECT_BUFFER_SIZE 8U
#ifndef GOL_DELAY #ifndef GOL_DELAY
#define GOL_DELAY 250 /* milliseconds */ #define GOL_DELAY 1 /* milliseconds */
#endif #endif
#ifndef GOL_CYCLES #ifndef GOL_CYCLES
@ -192,7 +192,7 @@ void pfcopy(field_t dest, field_t src){
/******************************************************************************/ /******************************************************************************/
#ifndef BITSTUFFED #ifndef BITSTUFFED
coord_t pfcmp(field_t dest, field_t src){ uint8_t pfcmp(field_t dest, field_t src){
coord_t x,y; coord_t x,y;
for(y=YSIZE; y--;){ for(y=YSIZE; y--;){
for(x=XSIZE; x--;){ for(x=XSIZE; x--;){
@ -205,7 +205,7 @@ coord_t pfcmp(field_t dest, field_t src){
/******************************************************************************/ /******************************************************************************/
uint8 pfempty(field_t src){ uint8_t pfempty(field_t src){
coord_t x,y; coord_t x,y;
for(y=YSIZE; y--;){ for(y=YSIZE; y--;){
for(x=XSIZE; x--;){ for(x=XSIZE; x--;){