]> git.sur5r.net Git - cc65/blobdiff - src/sp65/input.c
Merge pull request #249 from polluks/master
[cc65] / src / sp65 / input.c
index 85807752fea353a12d60806476d2cdda6c27a21d..381adf6b98bc733896fff91bfa89511ce428efd9 100644 (file)
@@ -87,9 +87,9 @@ static const FileId FormatTable[] = {
 
 Bitmap* ReadInputFile (const Collection* A)
 /* Read a bitmap from a file and return it. Format, file name etc. must be
- * given as attributes in A. If no format is given, the function tries to
- * autodetect it by using the extension of the file name.
- */
+** given as attributes in A. If no format is given, the function tries to
+** autodetect it by using the extension of the file name.
+*/
 {
     const FileId* F;
 
@@ -119,6 +119,3 @@ Bitmap* ReadInputFile (const Collection* A)
     /* Call the format specific read */
     return InputFormatTable[F->Id].Read (A);
 }
-
-
-