Remove "state" from "Invalid state parameter" error message

- It's confusing to see this from inside an anonymous function. Actually,
  maybe it should be reworded altogether?
This commit is contained in:
Randy Heit 2016-02-29 21:44:12 -06:00
parent cb1d9597f2
commit fb8d8dc775
1 changed files with 1 additions and 1 deletions

View File

@ -583,7 +583,7 @@ FxVMFunctionCall *ParseAction(FScanner &sc, FState state, FString statestring, B
}
return call;
}
sc.ScriptError("Invalid state parameter %s\n", sc.String);
sc.ScriptError("Invalid parameter '%s'\n", sc.String);
return NULL;
}