Add remaining rp355 effects to modifiers array.

1) A few rp355 effects were missing from the modifiers array.
2) The EH_PHASER effects were missing from the xml_settings array.
3) Added a disambiguating string to the "Unable to map" warning in
   gdigi.c.
This commit is contained in:
Tim LaBerge
2012-12-16 11:12:10 -08:00
parent 3a3017b46f
commit 44dbbe7b72
2 changed files with 30 additions and 3 deletions

View File

@@ -144,8 +144,8 @@ format_value (XmlSettings *xml, guint value)
{
char *textp = map_xml_value(xml, values, value);
if (!textp) {
g_warning("Unable to map %s value %d for id %d position %d",
xml->label, value, xml->id, xml->position);
g_warning("%s: Unable to map %s value %d for id %d position %d",
__FUNCTION__, xml->label, value, xml->id, xml->position);
textp = "";
}
g_string_printf(buf, "%s", textp);