nklymok / endgame

Final C Marathon project - A console videogame!
MIT License
5 stars 1 forks source link

Feedback #1

Open Domosed-gamin opened 3 years ago

Domosed-gamin commented 3 years ago

Hi! Cool game ascii ncurses-based game. I really enjoy to play it. You, rocks, guys! I have some feedback.

  1. Default terminal settings not restored after exit. Please add endwin(); in file menu.c (line 116)
    //how to play
                case 3:
                    about_us();
                    wgetch(win);
                    clear();
                    refresh();
                    break;
                //about us
                case 4:
                    //exit
                    endwin();     <----- **add this**
                    exit(0);
                    break;
                default:
                refresh();
                break;
            }
  2. Exit (any key) in "about us" not work.
  3. Please add license file like MIT, BSD or GPL. If it's possible, of course.

P. S. Sorry for my english. ^_^

nklymok commented 3 years ago

Hello! Thank you for your feedback :) We're going to resolve these issues in a moment. Thanks for the detailed advice and feedback.

We are genuinely happy that you liked our game.