summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dice.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/dice.c b/dice.c
index 254942c..a80d27e 100644
--- a/dice.c
+++ b/dice.c
@@ -25,12 +25,12 @@
enum {BORDER, EMPTY, LEFT, MIDDLE, RIGHT, BOTH};
char *dice[] = {
- [BORDER] = " ----- ",
- [EMPTY] = "| |",
- [LEFT] = "|O |",
- [MIDDLE] = "| O |",
- [RIGHT] = "| O|",
- [BOTH] = "|O O|"
+ [BORDER] = " ------- ",
+ [EMPTY] = "| |",
+ [LEFT] = "| o |",
+ [MIDDLE] = "| o |",
+ [RIGHT] = "| o |",
+ [BOTH] = "| o o |"
};
int row[][5] = {