Correct small error/warning.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4073
This commit is contained in:
parent
f7ae7a1dbe
commit
5cb34a071d
1 changed files with 1 additions and 1 deletions
|
@ -715,7 +715,7 @@ bool CMscdex::GetDirectoryEntry(Bit16u drive, bool copyFlag, PhysPt pathname, Ph
|
|||
do {
|
||||
entryLength = mem_readb(defBuffer+index);
|
||||
if (entryLength==0) break;
|
||||
if (mem_readb(defBuffer+index+iso ? 0x19:0x18) & 4) {
|
||||
if (mem_readb(defBuffer + index + (iso?0x19:0x18) ) & 4) {
|
||||
// skip associated files
|
||||
index += entryLength;
|
||||
continue;
|
||||
|
|
Loading…
Add table
Reference in a new issue