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