fix: ncurses init in main

pull/3/head
Nicolò Balzarotti 2016-12-26 15:52:51 +01:00 committed by Racoonicorn
parent c8146c4273
commit 9632d192df
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#define VERSION "1.00"
#define VERSION "1.01"
#define N 9
#define USERNAME_LENGTH 10
@ -31,6 +31,11 @@ int gridset = 0;
FILE *fp;
int main () {
initscr();
noecho();
cbreak();
keypad(stdscr, true);
srand (time(NULL));
fp = fopen ("roofus.txt", "a+");
if (fp == NULL) {
@ -63,11 +68,6 @@ void restoregrid () {
void menu (){
int mode;
initscr();
noecho();
cbreak();
keypad(stdscr, true);
while (1) {
clear();
printw ("~~~ ROOFUS ~~~\n\n[1] Play\n[2] Ranking\n[3] Settings\n[4] Rules\n[q] Quit\n\n");