X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Feditor.c;h=cc1232f8dabbeab772d20f6d200b90273a1de409;hb=b26f8fb0a937290a3e3f8241a5765556f437ab2a;hp=271cd2b1a62fb56413cbc525c4173971cf9ae67a;hpb=466733e5fd75e0d705bf80dddb48468c4c9885a7;p=rocksndiamonds.git diff --git a/src/editor.c b/src/editor.c index 271cd2b1..cc1232f8 100644 --- a/src/editor.c +++ b/src/editor.c @@ -10074,7 +10074,10 @@ static void CopyBrushExt(int from_x, int from_y, int to_x, int to_y, else if (element >= NUM_FILE_ELEMENTS) element_mapped = EL_UNKNOWN; - printf("%c%03d", (mode == CB_DUMP_BRUSH ? '`' : '¸'), element_mapped); + // dump brush as level sketch text for the R'n'D forum: + // - large tiles: `xxx (0x60 ASCII) + // - small tiles: ¸xxx (0xb8 ISO-8859-1, 0xc2b8 UTF-8) + printf("%s%03d", (mode == CB_DUMP_BRUSH ? "`" : "¸"), element_mapped); } printf("\n");