Merge pull request #101 from SvOlli/master

Update src/iec_commands.cpp
This commit is contained in:
Stephen White 2018-11-20 06:30:38 +11:00 committed by GitHub
commit 77286c0279
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -178,13 +178,15 @@ void Error(u8 errorCode, u8 track = 0, u8 sector = 0)
switch (errorCode)
{
case ERROR_00_OK:
msg = "OK";
msg = " OK";
break;
case ERROR_25_WRITE_ERROR:
msg = "WRITE ERROR";
break;
case ERROR_73_DOSVERSION:
msg = "PI1541";
sprintf(ErrorMessage, "%02d,PI1541 V%02d.%02d,%02d,%02d", errorCode,
versionMajor, versionMinor, track, sector);
return;
break;
case ERROR_30_SYNTAX_ERROR:
case ERROR_31_SYNTAX_ERROR:
@ -206,7 +208,7 @@ void Error(u8 errorCode, u8 track = 0, u8 sector = 0)
DEBUG_LOG("EC=%d?\r\n", errorCode);
break;
}
sprintf(ErrorMessage, "%02d, %s, %02d, %02d", errorCode, msg, track, sector);
sprintf(ErrorMessage, "%02d,%s,%02d,%02d", errorCode, msg, track, sector);
}
static inline bool IsDirectory(FILINFO& filInfo)