We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9be16b commit 31e5333Copy full SHA for 31e5333
source/tools/C/emufile.c
@@ -57,8 +57,8 @@ typedef struct {
57
/* Strings */
58
59
const char* strTitle=
60
- "Disk image emulation tool for Nextor v1.2\r\n"
61
- "By Konamiman, 10/2019\r\n"
+ "Disk image emulation tool for Nextor v1.21\r\n"
+ "By Konamiman, 7/2020\r\n"
62
"\r\n";
63
64
const char* strUsage=
@@ -494,7 +494,7 @@ bool DirectoryExists(char* dirName)
494
if(regs.Bytes.A != 0)
495
TerminateWithDosError(regs.Bytes.A);
496
497
- return (regs.Bytes.B & FILEATTR_DIRECTORY) != 0;
+ return (fib->attributes & FILEATTR_DIRECTORY) != 0;
498
}
499
500
void ProcessFileFound()
0 commit comments