fixed a missplaced memset in akos code. Fixed a typo in the Makefile

svn-id: r4384
This commit is contained in:
Vincent Hamm 2002-05-25 18:56:28 +00:00
parent 3255ea1278
commit 657a92e964
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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;