| 244 | } |
| 245 | |
| 246 | void SaveScript(const char *filename, char *script) { |
| 247 | CFILE *file; |
| 248 | char file_path[256]; |
| 249 | |
| 250 | ddio_MakePath(file_path, LocalLevelsDir, filename, NULL); |
| 251 | |
| 252 | file = cfopen(file_path, "wt"); |
| 253 | cf_WriteString(file, script); |
| 254 | // mprintf(0,"Saving script to %s\n",file_path); |
| 255 | cfclose(file); |
| 256 | } |
| 257 | |
| 258 | void FreeScript(char *script) { mem_free(script); } |
| 259 |
no test coverage detected