diff options
author | Ian C <ianc@noddybox.co.uk> | 2020-03-15 22:42:55 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2020-03-15 22:42:55 +0000 |
commit | 26ff8d1fb2ea8b2eea3828616f0175dac02c3307 (patch) | |
tree | b3cc8fdc98949930312d04123a7499ae2a8c9f3e /src/Makefile | |
parent | e78edf8ab7b236e8ed86318fb57d4c6642602b5e (diff) |
Added simple timing to get 50 frames a second, hopefully.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index a9a835d..8ed3914 100644 --- a/src/Makefile +++ b/src/Makefile @@ -15,7 +15,11 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. TARGET=czx81 -CURSES=-lcursesw + +# This library may need to be set to one of these: +# cursesw +# ncursesw +CURSES=-lncurses OBJS= czx81.o \ zx81rom.o |