diff --git a/src/graph-v1.c b/src/graph-v1.c index aea1c0afe..097880e78 100644 --- a/src/graph-v1.c +++ b/src/graph-v1.c @@ -396,11 +396,11 @@ graph_symbol_to_chtype(const struct graph_symbol *symbol) if (symbol->boundary) graphics[1] = 'o'; else if (symbol->initial) - graphics[1] = 'I'; + graphics[1] = '@'; else if (symbol->merge) - graphics[1] = 'M'; + graphics[1] = ACS_DIAMOND; else - graphics[1] = 'o'; //ACS_DIAMOND; //'*'; + graphics[1] = ACS_BULLET; return graphics; } diff --git a/src/graph-v2.c b/src/graph-v2.c index 69ac15877..3e596721e 100644 --- a/src/graph-v2.c +++ b/src/graph-v2.c @@ -1096,11 +1096,11 @@ graph_symbol_to_chtype(const struct graph_symbol *symbol) if (symbol->boundary) graphics[1] = 'o'; else if (symbol->initial) - graphics[1] = 'I'; + graphics[1] = '@'; else if (symbol->merge) - graphics[1] = 'M'; + graphics[1] = ACS_DIAMOND; else - graphics[1] = 'o'; //ACS_DIAMOND; //'*'; + graphics[1] = ACS_BULLET; return graphics; } else if (graph_symbol_cross_merge(symbol)) {