| 350 | } |
| 351 | |
| 352 | bool FindCurrentDirectory() |
| 353 | { |
| 354 | if(!fs_getcwd(m_aCurrentdir, sizeof(m_aCurrentdir))) |
| 355 | { |
| 356 | log_error("storage", "could not determine current directory"); |
| 357 | return false; |
| 358 | } |
| 359 | return true; |
| 360 | } |
| 361 | |
| 362 | void FindBinaryDirectory(const char *pArgv0) |
| 363 | { |
no test coverage detected