This commit is contained in:
jl777
2019-03-26 02:45:09 -11:00
parent a02e96bc3b
commit 44776662d0

View File

@@ -472,7 +472,7 @@ void tg_delete(tetris_game *obj) {
/* /*
Load a game from a file. Load a game from a file.
*/
tetris_game *tg_load(FILE *f) tetris_game *tg_load(FILE *f)
{ {
tetris_game *obj = (tetris_game *)malloc(sizeof(tetris_game)); tetris_game *obj = (tetris_game *)malloc(sizeof(tetris_game));
@@ -494,18 +494,18 @@ tetris_game *tg_load(FILE *f)
} }
} }
return obj; return obj;
} }*/
/* /*
Save a game to a file. Save a game to a file.
*/
void tg_save(tetris_game *obj, FILE *f) void tg_save(tetris_game *obj, FILE *f)
{ {
if (fwrite(obj, sizeof(tetris_game), 1, f) != 1 ) if (fwrite(obj, sizeof(tetris_game), 1, f) != 1 )
fprintf(stderr,"error writing tetrisgame\n"); fprintf(stderr,"error writing tetrisgame\n");
else if (fwrite(obj->board, sizeof(char), obj->rows * obj->cols, f) != obj->rows * obj->cols ) else if (fwrite(obj->board, sizeof(char), obj->rows * obj->cols, f) != obj->rows * obj->cols )
fprintf(stderr,"error writing board\n"); fprintf(stderr,"error writing board\n");
} }*/
/* /*
Print a game board to a file. Really just for early debugging. Print a game board to a file. Really just for early debugging.