From 5f8e03005d1557a619d1017f09def5926d5f807a Mon Sep 17 00:00:00 2001 From: sparky4 Date: Thu, 24 Mar 2016 21:07:34 -0500 Subject: [PATCH] tesuto fix --- makefile | 4 ++-- src/tesuto.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index 28ce06ee..0cd2c115 100755 --- a/makefile +++ b/makefile @@ -111,12 +111,12 @@ scroll.$(OBJ): $(SRC)scroll.c # NOTE: dos86h = 16-bit huge memory model. memory model must match! -tesuto.exe: tesuto.$(OBJ) $(DOSLIBLIBS) #16_head.$(OBJ) #gfx.lib +tesuto.exe: tesuto.$(OBJ) $(DOSLIBLIBS) 16_head.$(OBJ) gfx.lib # %write tmp.cmd option quiet option map=tesuto.map $(DOSLIB_LDFLAGS_DOS16H) file tesuto.obj name tesuto.exe # %write tmp.cmd library $(DOSLIBDIR)/hw/cpu/dos86h/cpu.lib # %write tmp.cmd library $(DOSLIBDIR)/hw/dos/dos86h/dos.lib # @wlink @tmp.cmd - wcl $(FLAGS) $(WCLQ) tesuto.$(OBJ) $(DOSLIBLIBS) #16_head.$(OBJ) #gfx.lib + wcl $(FLAGS) $(WCLQ) tesuto.$(OBJ) $(DOSLIBLIBS) 16_head.$(OBJ) gfx.lib tesuto.$(OBJ): $(SRC)tesuto.c wcl $(FLAGS) $(WCLQ) -c $(SRC)tesuto.c #tesuto.exe: tesuto.$(OBJ) diff --git a/src/tesuto.c b/src/tesuto.c index 2675094f..903dd6af 100755 --- a/src/tesuto.c +++ b/src/tesuto.c @@ -3,7 +3,7 @@ #include #include -//#include "src/tesuto.h" +#include "src/tesuto.h" static unsigned char palette[768]; -- 2.39.5