=================================================================== RCS file: /cvs/ace/ace/tests/penguins.c,v retrieving revision 1.1 retrieving revision 1.2 diff -p -u -r1.1 -r1.2 --- ace/tests/penguins.c 1999/02/20 20:36:54 1.1 +++ /cvs/ace/ace/tests/penguins.c 2001/04/08 03:19:14 1.2 @@ -1,5 +1,5 @@ /* The Ace of Penguins - test2.c - Copyright (C) 1998 DJ Delorie + Copyright (C) 1998, 2001 DJ Delorie This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -49,12 +49,12 @@ init() for (s=0; s<4; s++) for (v=0; v<13; v++) { - sprintf(name, "card/%c%c.gif", values[v], suits[s]); + sprintf(name, "%c%c", values[v], suits[s]); cards[v*4+s] = get_picture(name); cx[v*4+s] = M+v*(M+W); cy[v*4+s] = M+s*(M+H); } - empty = get_picture("empty.gif"); + empty = get_picture("empty"); /* shuffle! */ srand(time(0));