X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Ffiles.c;fp=src%2Ffiles.c;h=5c8b149d11b38db83fbac390b6c794ed393ada45;hp=4a980dffc748708fd4485a8f9b72d4e89252ab4e;hb=be87135dee857f298379bf68ea26f9fec49890b8;hpb=4a0a9d29b36c9367444191a3e6c5ab9fc7b5ae4f diff --git a/src/files.c b/src/files.c index 4a980dff..5c8b149d 100644 --- a/src/files.c +++ b/src/files.c @@ -7798,6 +7798,28 @@ void DumpLevel(struct LevelInfo *level) Print("use step counter: %s\n", (level->use_step_counter ? "yes" : "no")); Print("rate time over score: %s\n", (level->rate_time_over_score ? "yes" : "no")); + if (options.debug) + { + int i, j; + + for (i = 0; i < NUM_ENVELOPES; i++) + { + char *text = level->envelope[i].text; + int text_len = strlen(text); + boolean has_text = FALSE; + + for (j = 0; j < text_len; j++) + if (text[j] != ' ' && text[j] != '\n') + has_text = TRUE; + + if (has_text) + { + Print("\n"); + Print("Envelope %d:\n'%s'\n", i + 1, text); + } + } + } + PrintLine("-", 79); }