fixed using masked elements when using element graphic for empty space
[rocksndiamonds.git] / src / files.c
index d9addaf1fc074a8ef0f8bde81ead0dfd780f579d..1514d4e6d864ddc0dc0761257561b8f1f77baa45 100644 (file)
@@ -11826,6 +11826,7 @@ int get_parameter_value(char *value_raw, char *suffix, int type)
              strEqual(value, "bottom") ? POS_BOTTOM :
              strEqual(value, "any")    ? POS_ANY :
              strEqual(value, "ce")     ? POS_CE :
+             strEqual(value, "ce_trigger") ? POS_CE_TRIGGER :
              strEqual(value, "last")   ? POS_LAST : POS_UNDEFINED);
   }
   else if (strEqual(suffix, ".align"))
@@ -11859,6 +11860,7 @@ int get_parameter_value(char *value_raw, char *suffix, int type)
              string_has_parameter(value, "centered")   ? ANIM_CENTERED :
              string_has_parameter(value, "all")        ? ANIM_ALL :
              string_has_parameter(value, "tiled")      ? ANIM_TILED :
+             string_has_parameter(value, "level_nr")   ? ANIM_LEVEL_NR :
              ANIM_DEFAULT);
 
     if (string_has_parameter(value, "once"))