Update of /cvsroot/agd/server/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12242
Modified Files:
interpret.c
Log Message:
Fixed compilation.
Index: interpret.c
===================================================================
RCS file: /cvsroot/agd/server/src/interpret.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- interpret.c 21 Mar 2004 08:56:52 -0000 1.13
+++ interpret.c 21 Mar 2004 09:00:03 -0000 1.14
@@ -246,7 +246,7 @@
this_player = /*this_ob->iaob*/ csp->this_player;
}
-/*
+/* Is this necessary? */
void remove_lvalues(void) {
int i;
for(i=0;i<csp->num_arg;i++) {
@@ -256,7 +256,7 @@
}
}
}
-*/
+
/* Used by F_JMP and F_JMPF to check if they jumped too far. */
#define CHECK_OVERRUN() if((int *) cp >= (int *) code->data + code->length) {\
|