=========== FS_ConvertPath =========== */
| 2457 | =========== |
| 2458 | */ |
| 2459 | void FS_ConvertPath( char *s ) { |
| 2460 | while (*s) { |
| 2461 | if ( *s == '\\' || *s == ':' ) { |
| 2462 | *s = '/'; |
| 2463 | } |
| 2464 | s++; |
| 2465 | } |
| 2466 | } |
| 2467 | |
| 2468 | /* |
| 2469 | =========== |
no outgoing calls
no test coverage detected