| 66 | } |
| 67 | |
| 68 | Torque::Path makeFullPath( const char* path ) |
| 69 | { |
| 70 | char tempBuf[1024]; |
| 71 | Platform::makeFullPathName( path, tempBuf, sizeof(tempBuf), Platform::getCurrentDirectory() ); |
| 72 | return Torque::Path( String( tempBuf ) ); |
| 73 | } |
| 74 | |
| 75 | S32 TorqueMain( S32 argc, const char **argv ) |
| 76 | { |
no test coverage detected