diff options
| -rw-r--r-- | src/Makefile | 4 | ||||
| -rw-r--r-- | src/YetiHack.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 4dd3f89..4c36df5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,8 +2,8 @@ yetihack: YetiHack.o yeti.o g++ -o yetihack YetiHack.o yeti.o -lncurses YetiHack.o: YetiHack.cpp - g++ -I../include -o YetiHack.o -c YetiHack.cpp + g++ -g -I../include -o YetiHack.o -c YetiHack.cpp yeti.o: yeti.cpp - g++ -I../include -o yeti.o -c yeti.cpp + g++ -g -I../include -o yeti.o -c yeti.cpp diff --git a/src/YetiHack.cpp b/src/YetiHack.cpp index 59c6fc5..01c9503 100644 --- a/src/YetiHack.cpp +++ b/src/YetiHack.cpp @@ -282,7 +282,7 @@ bool smessage(int num, string message) refresh(); getch(); erase(); - if (start(true, true, num) == 1) + if (start(false, true, num) == 1) { erase(); addstr("You died!"); |
