From 0e42930b25a69fd794fe625f63e3bc10d3ca76d4 Mon Sep 17 00:00:00 2001 From: Ivan Davydov Date: Mon, 7 Apr 2025 00:05:46 +0300 Subject: Major changes to code readability and balance Use curses instead of ncurses Make game harder to play, see source code for changes Print score normally (not like in implementations of classic vi) Run free() right before the end the program (valgrind still complains) Remove unnecessary get_* and set_* functions and refer to structure members directly --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4945fc2..b049c03 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ .SUFFIXES: CC = cc CFLAGS = -Wall -LDLIBS = -lncurses +LDLIBS = -lcurses all: clicker-ncurses clicker-ncurses: clicker-ncurses.o -- cgit v1.2.3