Y_SIZE
if (LINES != Y_SIZE || COLS != X_SIZE) {
if (LINES < Y_SIZE || COLS < X_SIZE) {
errx(1, "Need at least a %dx%d screen", Y_SIZE, X_SIZE);
stdscr = newwin(Y_SIZE, X_SIZE, 0, 0);
#define MAXSCORES (Y_SIZE - 2)