=================================================================== RCS file: /cvs/ace/ace/tests/test3.c,v retrieving revision 1.1 retrieving revision 1.2 diff -p -u -r1.1 -r1.2 --- ace/tests/test3.c 1999/02/20 20:35:17 1.1 +++ /cvs/ace/ace/tests/test3.c 2001/04/08 03:19:14 1.2 @@ -1,5 +1,5 @@ /* The Ace of Penguins - test3.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 @@ -51,13 +51,13 @@ 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"); - back = get_picture("back.gif"); + empty = get_picture("empty"); + back = get_picture("back"); stack_set_pictures(cards, back);