aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--actor.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3a8cd0c678..dc675a130b 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ LIBS = -lncurses
# Comment this if you want to disable SDL output
OBJS = sdl.o
-INCLUDE += `sdl-config --cflags`
+INCLUDES += `sdl-config --cflags`
LIBS += `sdl-config --libs`
DEFINES += -DUNIX
diff --git a/actor.cpp b/actor.cpp
index 0a27a87679..fe7d98a50e 100644
--- a/actor.cpp
+++ b/actor.cpp
@@ -1008,7 +1008,7 @@ void Actor::drawActorCostume()
setupActorScale();
/* First, zero initialize all fields */
- memset(&ar, 0, sizeof(ar));
+ //memset(&ar, 0, sizeof(ar));
ar.x = x - _vm->virtscr->xstart;
ar.y = y - elevation;