diff --git a/README.md b/README.md new file mode 100644 index 0000000..bd87566 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# tty-solitaire + ncurses-based klondlike solitaire game. + +## Running the game + $ git clone git://github.com/mpereira/tty-solitaire.git + $ cd tty-solitaire + $ make && ./ttysolitaire + +## Screenshots +![Greeting screen picture](http://dl.dropbox.com/u/14256545/tty_solitaire_screenshot_shadowed_0.png) +![Game start picture](http://dl.dropbox.com/u/14256545/tty_solitaire_screenshot_shadowed_1.png) +![Game middle picture](http://dl.dropbox.com/u/14256545/tty_solitaire_screenshot_shadowed_2.png) + +## Running the unit tests + $ make test + +## Author + [Murilo Pereira](http://murilopereira.com) + +## License + Released under the + [MIT license](http://github.com/mpereira/embratel/blob/master/MIT-LICENSE). diff --git a/README.org b/README.org deleted file mode 100644 index 53faec2..0000000 --- a/README.org +++ /dev/null @@ -1,25 +0,0 @@ -* tty-solitaire - ncurses-based klondlike solitaire game - -** Warning - This game is under development. There are some basic functionality - but it's not playable yet. - -** Run the game -#+BEGIN_SRC -$ git clone git://github.com/mpereira/tty-solitaire.git -$ cd tty-solitaire -$ make && ./ttysolitaire -#+END_SRC - -** Run the unit tests -#+BEGIN_SRC -$ make test -#+END_SRC - -** Author - [[http://murilopereira.com][Murilo Pereira]] - -** License - Released under the - [[http://github.com/mpereira/embratel/blob/master/MIT-LICENSE][MIT license]]. diff --git a/src/ttysolitaire.c b/src/ttysolitaire.c index 28b227e..c9fc461 100644 --- a/src/ttysolitaire.c +++ b/src/ttysolitaire.c @@ -10,7 +10,7 @@ const char *program_name; void draw_greeting() { mvprintw(8, 26, "Welcome to tty-solitaire."); - mvprintw(10, 27, "Move with \u2190\u2191\u2192\u2193 or hjkl."); + mvprintw(10, 23, "Move with the arrow keys or hjkl."); mvprintw(11, 19, "Use the space bar to mark and move cards."); mvprintw(12, 16, "After marking a card you can use m to increase "); mvprintw(13, 17, "and n to decrease the number of marked cards.");