Unused var

svn-id: r16235
This commit is contained in:
Travis Howell 2004-12-21 05:57:36 +00:00
parent 4ecd5edab6
commit e81daf7840

View File

@ -533,13 +533,12 @@ void ScummEngine_v72he::copyScriptString(byte *dst) {
void ScummEngine_v72he::decodeScriptString(byte *dst, bool scriptString) {
int args[31];
int num = 0, val;
int len, id;
int num = 0, len, val;
byte chr, string[256];
memset(string, 0, sizeof(string));
val = getStackList(args, ARRAYSIZE(args));
args[val] = id = pop();
args[val] = pop();
if (scriptString) {
addMessageToStack(_scriptPointer, string, sizeof(string));