Add missing array with face names.

This commit is contained in:
Guus Sliepen 2012-03-11 15:22:38 +01:00
parent da50d090f5
commit b9d9158619
1 changed files with 6 additions and 0 deletions

View File

@ -418,6 +418,12 @@ void doInfo()
}
}
static const char *faces[] = {
"FACE_CHRIS", "FACE_SID", "FACE_KRASS",
"FACE_KLINE", "FACE_PHOEBE", "FACE_URSULA",
"FACE_CREW"
};
int getFace(const char *face)
{
for (int i = 0 ; i < 7 ; i++)