1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@2180 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-05-30 10:25:55 +00:00
parent 5afb710f98
commit 3629c9ac7c

View File

@ -165,7 +165,6 @@ void AddSearchPath (const char* NewPath, unsigned Where)
if (Where & Mask) {
SearchPaths[I] = Add (SearchPaths[I], NewPath);
}
++I;
}
}
}
@ -195,7 +194,6 @@ char* SearchFile (const char* Name, unsigned Where)
return Path;
}
}
++I;
}
return 0;
}