X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ffiles.c;h=17a5fa8daf6cae02be69f8d4fab135a3f1e28b79;hb=b4962aefbc6cf3356112afe7cf421e073360de14;hp=11f4c1425624e2c3ad73e9590d5b7412b7ef83e3;hpb=a0d9cd0bdd01d7e9b5c3086bea3b573987b4a84f;p=rocksndiamonds.git diff --git a/src/files.c b/src/files.c index 11f4c142..17a5fa8d 100644 --- a/src/files.c +++ b/src/files.c @@ -11859,6 +11859,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")) @@ -11915,6 +11916,9 @@ int get_parameter_value(char *value_raw, char *suffix, int type) if (string_has_parameter(value, "multiple_actions")) result |= STYLE_MULTIPLE_ACTIONS; + + if (string_has_parameter(value, "consume_ce_event")) + result |= STYLE_CONSUME_CE_EVENT; } else if (strEqual(suffix, ".fade_mode")) {