| 2226 | //----------------------------------------------------------------------------- |
| 2227 | |
| 2228 | bool isBasePath(const char* SrcPath, const char* pBasePath) |
| 2229 | { |
| 2230 | char expandBuffer[1024]; |
| 2231 | Con::expandPath(expandBuffer, sizeof(expandBuffer), SrcPath); |
| 2232 | return dStrnicmp(pBasePath, expandBuffer, dStrlen(pBasePath)) == 0; |
| 2233 | } |
| 2234 | |
| 2235 | //----------------------------------------------------------------------------- |
| 2236 |
no test coverage detected