Merge pull request #6 from besser82/improvements
some minor improvements
This commit is contained in:
commit
2fef5a4822
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/2048*
|
4
Makefile
4
Makefile
|
@ -5,10 +5,10 @@ LIBS = -lcurses
|
|||
all: 2048
|
||||
|
||||
2048: src/2048.c src/2048.h src/highscore_file.c
|
||||
$(CC) $(CFLAGS) src/2048.c src/highscore_file.c -o 2048 $(LIBS)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) src/2048.c src/highscore_file.c -o 2048
|
||||
|
||||
2048nc: src/2048_no_curses.c src/2048.h src/highscore_file.c
|
||||
$(CC) $(CFLAGS) src/2048_no_curses.c src/highscore_file.c -o 2048nc
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) src/2048_no_curses.c src/highscore_file.c -o 2048nc
|
||||
|
||||
clean:
|
||||
rm -f 2048 2048nc
|
||||
|
|
|
@ -163,7 +163,7 @@ int get_score_high() {
|
|||
if (fd == NULL)
|
||||
fd = fopen(HISCORE_FILE, "w+");
|
||||
|
||||
fscanf(fd, "%d", &s);
|
||||
if (fscanf(fd, "%d", &s) == 1) {};
|
||||
fclose(fd);
|
||||
return s;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user