From dd20e4aaf9488db57042d727c1becdcad0186ce8 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 19 Mar 2008 09:53:57 +0000 Subject: [PATCH] - ACC related parts of SetMugShot addition. SVN r813 (trunk) --- pcode.c | 1 + pcode.h | 1 + symbol.c | 1 + 3 files changed, 3 insertions(+) diff --git a/pcode.c b/pcode.c index f07b841..edc860c 100644 --- a/pcode.c +++ b/pcode.c @@ -451,6 +451,7 @@ static char *PCDNames[PCODE_COMMAND_COUNT] = "PCD_CHECKACTORCEILINGTEXTURE", "PCD_CHECKACTORFLOORTEXTURE", "PCD_GETACTORLIGHTLEVEL", + "PCD_SETMUGSHOTSTATE", }; // CODE -------------------------------------------------------------------- diff --git a/pcode.h b/pcode.h index a2b988a..26d1c39 100644 --- a/pcode.h +++ b/pcode.h @@ -402,6 +402,7 @@ typedef enum PCD_CHECKACTORCEILINGTEXTURE, PCD_CHECKACTORFLOORTEXTURE, PCD_GETACTORLIGHTLEVEL, + PCD_SETMUGSHOTSTATE, PCODE_COMMAND_COUNT } pcd_t; diff --git a/symbol.c b/symbol.c index feb622b..d918ca5 100644 --- a/symbol.c +++ b/symbol.c @@ -186,6 +186,7 @@ static internFuncDef_t InternalFunctions[] = { "checkactorceilingtexture", PCD_NOP, PCD_CHECKACTORCEILINGTEXTURE, 2, 0, 0, YES, NO }, { "checkactorfloortexture", PCD_NOP, PCD_CHECKACTORFLOORTEXTURE, 2, 0, 0, YES, NO }, { "getactorlightlevel", PCD_NOP, PCD_GETACTORLIGHTLEVEL, 1, 0, 0, YES, NO }, + { "setmugshotstate", PCD_NOP, PCD_SETMUGSHOTSTATE, 1, 0, 0, NO, NO }, { NULL, PCD_NOP, PCD_NOP, 0, 0, 0, NO, NO } };