| 74 | } |
| 75 | |
| 76 | fs_path CApplication::ExeFilePath(const char *str, ...) const |
| 77 | { |
| 78 | va_list arg; |
| 79 | va_start(arg, str); |
| 80 | |
| 81 | char out[FS_MAX_PATH] = { 0 }; |
| 82 | vsprintf_s(out, str, arg); |
| 83 | va_end(arg); |
| 84 | |
| 85 | fs_path res = fs_path_join(m_ExePath, out); |
| 86 | return fs_insensitive(res); |
| 87 | } |
| 88 | |
| 89 | fs_path CApplication::UOFilesPath(const astr_t &str, ...) const |
| 90 | { |
no test coverage detected