(svn r10321) -Codechange: refer to sign text by index

This commit is contained in:
peter1138
2007-06-25 10:40:56 +00:00
parent abfbba139e
commit 97a2f5bf2a
8 changed files with 18 additions and 6 deletions

View File

@@ -88,7 +88,8 @@ static void SignListWndProc(Window *w, WindowEvent *e)
if (si->owner != OWNER_NONE)
DrawPlayerIcon(si->owner, 4, y + 1);
DrawString(22, y, si->str, 8);
SetDParam(0, si->index);
DrawString(22, y, STR_SIGN_NAME, 8);
y += 10;
}
}