[Atsoft-commit] CVS: dcgen/gui filelist.c,1.2,1.3
Brought to you by:
atani
|
From: Mike D. <at...@us...> - 2002-02-18 15:51:45
|
Update of /cvsroot/atsoft/dcgen/gui
In directory usw-pr-cvs1:/tmp/cvs-serv18947
Modified Files:
filelist.c
Log Message:
Removed the "./" entry as it is pretty pointless and without it it allows
one more rom to be displayed.
Index: filelist.c
===================================================================
RCS file: /cvsroot/atsoft/dcgen/gui/filelist.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** filelist.c 26 Jan 2002 03:51:44 -0000 1.2
--- filelist.c 18 Feb 2002 15:51:42 -0000 1.3
***************
*** 9,15 ****
void make_fake_entries()
{
! strcpy(file_entries[entry_count].realname, ".");
! strcpy(file_entries[entry_count].dispname, "./");
! file_entries[entry_count++].size = -1;
strcpy(file_entries[entry_count].realname, "..");
--- 9,15 ----
void make_fake_entries()
{
! // strcpy(file_entries[entry_count].realname, ".");
! // strcpy(file_entries[entry_count].dispname, "./");
! // file_entries[entry_count++].size = -1;
strcpy(file_entries[entry_count].realname, "..");
|