Name: Anonymous 2009-08-18 15:48
void grand(int c)
{
switch(c)
{
...
case 's':
scr_dump("state");
break;
case 'l':
scr_restore("state");
break;
case 'q':
break;
}
move(row, col);
refresh();When I hit `s' the file with the data is created, but it isn't loaded after pushing `l'. What's wrong?