Filecount is now an u16

git-svn-id: svn://svn.cc65.org/cc65/trunk@257 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-08-01 20:32:46 +00:00
parent ac8e170215
commit 6b3b938945
2 changed files with 6 additions and 4 deletions

View File

@@ -361,7 +361,7 @@ void DumpObjFiles (FILE* F, unsigned long Offset)
printf (" Files:\n");
/* Read the number of files and print it */
Count = Read8 (F);
Count = Read16 (F);
printf (" Count:%27u\n", Count);
/* Read and print all files */