NScumm.Sword1.Logic.fnChangeSpeechText C# (CSharp) Method

fnChangeSpeechText() private method

private fnChangeSpeechText ( SwordObject cpt, int id, int tar, int width, int pen, int f, int z, int x ) : int
cpt SwordObject
id int
tar int
width int
pen int
f int
z int
x int
return int
        private int fnChangeSpeechText(SwordObject cpt, int id, int tar, int width, int pen, int f, int z, int x)
        {
            SwordObject target = _objMan.FetchObject((uint)tar);
            target.speech_width = width;
            target.speech_pen = pen;
            return SCRIPT_STOP;
        }