| 602 | } |
| 603 | |
| 604 | string GetConfigPath() { |
| 605 | char config_path[kPathSize]; |
| 606 | GetConfigPath(config_path, kPathSize); |
| 607 | return string(config_path); |
| 608 | } |
| 609 | |
| 610 | void GetConfigPath(char* buf, size_t len) { |
| 611 | FormatString(buf, len, "%sData/config.txt", GetWritePath(CoreGameModID).c_str()); |
no test coverage detected