Improved logging.

By the time the file is put into the ProDOS image, it isn't an AppleSingle file anymore.
This commit is contained in:
Oliver Schmidt 2022-08-05 13:48:00 +02:00
parent b9000f1f78
commit 19d63a8148
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ func main() {
fileType = int(binary.BigEndian.Uint16(inFile[0x34:]))
auxType = int(binary.BigEndian.Uint32(inFile[0x36:]))
inFile = inFile[0x3A:]
fmt.Printf("Putting AppleSingle (File type: %02X, AuxType: %04X)\n", fileType, auxType)
fmt.Printf("AppleSingle (File type: %02X, AuxType: %04X) detected\n", fileType, auxType)
}
err = prodos.WriteFile(file, pathName, fileType, auxType, inFile)
if err != nil {